This repository was archived by the owner on Sep 30, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.15 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.15 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
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
78
79
80
81
82
83
84
{
"name": "@resolute/repack",
"version": "0.1.19",
"description": "Static site generator with asset optimization and versioning.",
"bin": {
"repack": "cli.js",
"compress": "compress.js"
},
"main": "./",
"types": "./",
"files": [
"*.js",
"*.d.ts"
],
"scripts": {
"build": "npm run clean && tsc && chmod 755 cli.js compress.js && prettier --write *.js *.d.ts && (eslint --fix *.js > /dev/null 2>&1; true)",
"release": "np",
"prepublishOnly": "npm test && npm run build",
"clean": "del-cli *.js *.js.map *.d.ts",
"test": "echo TODO"
},
"repository": {
"type": "git",
"url": "git+https://github.com/resolute/repack.git"
},
"bugs": {
"url": "https://github.com/resolute/repack/issues"
},
"homepage": "https://github.com/resolute/repack",
"author": "Resolute Digital",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"@resolute/rio": "^0.1.0",
"autoprefixer": "^10.4.14",
"axios": "^1.3.4",
"esbuild": "^0.17.11",
"fast-glob": "^3.2.11",
"marko": "^5.25.0",
"node-zopfli": "^2.1.4",
"p-map": "^4.0.0",
"postcss": "^8.4.21",
"postcss-combine-media-query": "^1.0.1",
"postcss-sorting": "^8.0.2",
"probe-image-size": "^7.2.3",
"retry-axios": "2.6",
"sane": "^5.0.1",
"sass": "^1.59.3",
"sharp": "^0.31.3",
"svgo": "^3.0.2",
"terser": "^5.16.6",
"ts-node": "^10.7.0",
"typescript": "^4.9.5",
"xxhash-wasm": "^1.0.2"
},
"devDependencies": {
"@types/marko": "*",
"@types/node": "^18.15.3",
"@types/probe-image-size": "^7.0.1",
"@types/sane": "*",
"@types/sass": "^1.45.0",
"@types/sharp": "^0.31.1",
"@types/svgo": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"del-cli": "*",
"eslint": "^8.36.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"np": "^7.6.3",
"prettier": "^2.8.4"
},
"keywords": [
"static site generator",
"build tool",
"minify"
],
"publishConfig": {
"access": "public"
},
"license": "ISC"
}