-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 973 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 973 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "zipurl",
"version": "2.0.0",
"description": "Generate gzipped url-safe strings on the browser or nodejs",
"author": "Jason Lee <jason@zerodevx.com>",
"scripts": {
"build": "esbuild index.js --bundle --minify --outfile=dist/index.min.js",
"prepublishOnly": "npm run build && npx publint",
"format": "prettier --write .",
"lint": "prettier --check . && eslint",
"test": "npm run lint && node --test"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"esbuild": "^0.27.4",
"eslint": "^10.1.0",
"globals": "^17.4.0",
"prettier": "^3.8.1"
},
"type": "module",
"exports": "./index.js",
"bin": {
"zipurl": "bin/zipurl.js",
"unzipurl": "bin/unzipurl.js"
},
"jsdelivr": "./dist/index.min.js",
"files": [
"bin",
"dist",
"index.js"
],
"license": "ISC",
"repository": "github:zerodevx/zipurl",
"keywords": [
"gzip",
"base64",
"url-safe",
"json-compression"
]
}