-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.26 KB
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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "zipurl",
"version": "2.1.0",
"description": "Generate gzipped url-safe strings on the browser or nodejs",
"author": "Jason Lee <jason@zerodevx.com>",
"scripts": {
"build": "npm run build:types && npm run build:dist",
"build:dist": "esbuild src/index.js --bundle --minify --outfile=dist/index.min.js",
"build:types": "tsc src/index.js --allowJs --declaration --emitDeclarationOnly --outDir dist",
"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.28.1",
"eslint": "^10.8.0",
"globals": "^17.9.0",
"prettier": "^3.9.6",
"typescript": "^7.0.2"
},
"allowScripts": {
"esbuild": true
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./src/index.js"
}
},
"bin": {
"zipurl": "bin/zipurl.js",
"unzipurl": "bin/unzipurl.js"
},
"jsdelivr": "./dist/index.min.js",
"files": [
"src",
"bin",
"dist"
],
"license": "ISC",
"repository": "github:zerodevx/zipurl",
"keywords": [
"gzip",
"base64",
"url-safe",
"json-compression"
]
}