-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.05 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
{
"type": "module",
"dependencies": {
"fast-average-color": "^9.4.0"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@stylistic/eslint-plugin-js": "^2.6.2",
"@stylistic/stylelint-config": "^2.0.0",
"eslint": "^9.9.0",
"glob": "^11.0.0",
"globals": "^15.9.0",
"npm-run-all": "^4.1.5",
"remark-cli": "^12.0.1",
"remark-gfm": "^4.0.0",
"remark-lint-list-item-indent": "^4.0.0",
"remark-preset-lint-recommended": "^7.0.0",
"rollup": "^4.20.0",
"rollup-plugin-notify": "^1.1.0",
"stylelint": "^16.8.1",
"stylelint-config-standard": "^36.0.1",
"zip-a-folder": "^3.1.7"
},
"scripts": {
"lint:docs": "remark -f .",
"lint:styles": "stylelint styles/",
"lint:scripts": "eslint",
"lint": "pnpm npm-run-all lint:*",
"build:scripts": "rollup -c",
"build": "pnpm run build:scripts",
"watch:scripts": "pnpm run build:scripts --watch",
"watch": "pnpm npm-run-all --parallel watch:*",
"pack": "node exe/pack.js",
"release": "node exe/release.js"
}
}