-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.47 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.47 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
{
"name": "block_peek-assets",
"version": "1.1.0",
"description": "Asset build for BlockPeek Addon",
"scripts": {
"version:sync": "node scripts/sync-version.js",
"prebuild": "npm run version:sync && npm run clean:assets",
"build": "vite build",
"build:css": "vite build --mode css",
"build:js": "vite build --mode js",
"build:sync": "vite build && rsync -a assets/. ../../../public/assets/addons/block_peek/",
"watch": "vite build --watch",
"dev": "vite build --watch",
"dev:sync": "concurrently \"vite build --watch\" \"npm run clean:assets && npm run sync && npm run watch:build\"",
"clean:assets": "rm -rf ../../../public/assets/addons/block_peek/*",
"sync": "rsync -a assets/. ../../../public/assets/addons/block_peek/",
"watch:build": "chokidar 'assets/**/*' -c 'npm run sync'",
"preview": "vite preview",
"clean": "rm -rf assets dist node_modules/.vite",
"update-deps": "npm update"
},
"devDependencies": {
"autoprefixer": "^10.4.24",
"baseline-browser-mapping": "^2.9.19",
"chokidar-cli": "^3.0.0",
"concurrently": "^9.2.1",
"js-yaml": "^4.1.1",
"postcss": "^8.5.6",
"postcss-cli": "^11.0.1",
"prettier": "^3.8.1",
"prettier-plugin-css-order": "^2.2.0",
"prettier-plugin-organize-attributes": "^1.0.0",
"stylelint": "^17.1.1",
"stylelint-config-standard": "^40.0.0",
"vite": "^7.3.1"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"private": true
}