-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
77 lines (77 loc) · 1.99 KB
/
package.json
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@divriots/jampack",
"version": "0.33.0",
"cache-version": {
"img": "v1",
"img-ext": "v1"
},
"description": "Packer for static websites",
"author": "Georges Gomes @georges-gomes",
"bin": {
"jampack": "dist/index.js"
},
"homepage": "https://github.com/divriots/jampack",
"license": "MIT",
"main": "dist/index.js",
"type": "module",
"repository": "divriots/jampack",
"files": [
"/bin",
"/dist"
],
"exports": {
"./optimize": "./dist/optimize.js",
"./compress": "./dist/compress.js",
"./config": "./dist/config.js",
"./state": "./dist/state.js"
},
"dependencies": {
"@commander-js/extra-typings": "^12.0.0",
"@divriots/cheerio": "1.0.0-rc.12",
"@swc/core": "^1.4.16",
"add": "^2.0.6",
"browserslist": "^4.23.0",
"commander": "^12.0.0",
"critters": "^0.0.22",
"deepmerge": "^4.3.1",
"esbuild": "^0.20.2",
"escalade": "^3.2.0",
"file-type": "^19.0.0",
"globby": "^14.0.1",
"hasha": "^6.0.0",
"html-minifier-terser": "^7.2.0",
"kleur": "^4.1.5",
"lightningcss": "^1.25.1",
"lozad": "^1.16.0",
"mini-svg-data-uri": "^1.4.4",
"ora": "^8.0.1",
"quicklink": "^2.3.0",
"sharp": "^0.33.3",
"svgo": "^3.2.0",
"table": "^6.8.2",
"undici": "^6.13.0",
"unpic": "^3.18.0"
},
"devDependencies": {
"@types/html-minifier-terser": "^7.0.2",
"@types/node": "^20.12.7",
"shx": "^0.3.3",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.4.5"
},
"scripts": {
"watch": "pnpm build --watch",
"try": "shx rm -fr demo && cp -R demo_drc demo && node ./dist/index.js ./demo --nocache",
"build": "shx rm -rf dist && tsc -b",
"lint": "eslint . --ext .ts --config .eslintrc",
"prepublishOnly": "pnpm build",
"cleanAllDotJampack": "find -s . | grep '.jampack$' | xargs rm -fr"
},
"engines": {
"node": ">=14.0.0"
},
"bugs": "https://github.com/divriots/jampack/issues",
"keywords": [],
"types": "dist/index.d.ts"
}