-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
22 lines (22 loc) · 1009 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"license": "GPL-3.0",
"private": true,
"scripts": {
"build": "concurrently -r pnpm:build:*",
"build:js": "esbuild Resources/Private/Assets/{Data,LocalStorage,Module,Toggle}.js --bundle --minify --outdir=Resources/Public",
"build:css": "postcss --use postcss-pseudo-is autoprefixer cssnano --no-map --dir Resources/Public Resources/Private/Assets/*.css",
"watch": "concurrently -r pnpm:watch:*",
"watch:js": "esbuild Resources/Private/Assets/*.js --bundle --watch --outdir=Resources/Public",
"watch:css": "postcss --use postcss-pseudo-is autoprefixer --watch --no-map --dir Resources/Public Resources/Private/Assets/*.css",
"pipeline": "pnpm install --silent;pnpm build"
},
"dependencies": {
"autoprefixer": "^10.4.20",
"concurrently": "^9.0.1",
"cssnano": "^7.0.6",
"esbuild": "^0.24.0",
"postcss": "^8.4.47",
"postcss-cli": "^11.0.0",
"postcss-pseudo-is": "^0.3.0"
}
}