-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.28 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.28 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
{
"name": "vuetools",
"version": "1.1.0",
"description": "Vue core stack for MODX Revolution 3.x components",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:vue": "cross-env BUILD_TARGET=vue vite build --config vite.config.vendor.js",
"build:pinia": "cross-env BUILD_TARGET=pinia vite build --config vite.config.vendor.js",
"build:primevue": "cross-env BUILD_TARGET=primevue vite build --config vite.config.vendor.js",
"build:vendor": "npm run clean:vendor && npm run build:vue && npm run build:pinia && npm run build:primevue",
"build:composables": "vite build --config vite.config.composables.js",
"build:all": "npm run build:vendor && npm run build:composables",
"clean:vendor": "rimraf assets/components/vuetools/vendor",
"preview": "vite preview"
},
"dependencies": {
"@primevue/themes": "^4.3.1",
"pinia": "^3.0.1",
"primeicons": "^7.0.0",
"primelocale": "~2.2.4",
"primevue": "^4.3.1",
"vue": "^3.5.13"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.2.1",
"cross-env": "^10.1.0",
"postcss": "^8.4.49",
"postcss-prefix-selector": "^2.1.0",
"rimraf": "^6.1.2",
"vite": "^6.4.2"
},
"engines": {
"node": ">=18.0.0"
},
"author": "modx.pro",
"license": "MIT"
}