-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.48 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@servicestack/vue",
"version": "3.0.111",
"private": false,
"files": [
"dist"
],
"type": "module",
"module": "./dist/servicestack-vue.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/servicestack-vue.mjs",
"require": "./dist/servicestack-vue.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only build-style && run-p build-minify",
"build-minify": "uglifyjs dist/servicestack-vue.mjs --compress --mangle --webkit -o dist/servicestack-vue.min.mjs",
"build-style": "postcss src/tailwind.css -o dist/styles.css",
"build-copy": "npm run build && npm run copy-src && npm run copy-diffusion && npm run copy-aiserver",
"copy-src": "shx cp dist/servicestack-vue.min.mjs ../ServiceStack/ServiceStack/src/ServiceStack/js/servicestack-vue.mjs && shx cp dist/servicestack-vue.mjs ../ServiceStack/ServiceStack/tests/NorthwindAuto/wwwroot/lib/mjs/",
"copy-diffusion": "shx cp dist/servicestack-vue.m* ../../netcore/BlazorDiffusionVue/BlazorDiffusion/wwwroot/lib/mjs/ && shx cp dist/index.d.ts ../../netcore/BlazorDiffusionVue/BlazorDiffusion/wwwroot/lib/typings/@servicestack/vue/",
"copy-creatorkit": "shx cp dist/servicestack-vue.m* ../../netcore/CreatorKit/CreatorKit/wwwroot/lib/mjs/ && shx cp dist/index.d.ts ../../netcore/CreatorKit/CreatorKit/wwwroot/lib/typings/@servicestack/vue/",
"copy-aiserver": "shx cp dist/servicestack-vue.m* ../ai-server/AiServer/wwwroot/lib/mjs/ && shx cp dist/index.d.ts ../ai-server/AiServer/wwwroot/lib/typings/@servicestack/vue/",
"preview": "vite preview",
"build-only": "vite build -l error",
"type-check": "vue-tsc --noEmit",
"test": "vitest",
"release": "bump patch --commit --push --tag && npm publish"
},
"dependencies": {
"@servicestack/client": "^2.1.2",
"vue": "^3.4.19",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.3",
"@types/node": "^18.11.19",
"@vitejs/plugin-vue": "^4.4.0",
"@vitest/browser": "^0.34.6",
"@vue/test-utils": "^2.4.1",
"@vue/tsconfig": "^0.1.3",
"autoprefixer": "^10.4.13",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"postcss-cli": "^10.1.0",
"shx": "^0.3.4",
"tailwindcss": "^3.2.4",
"typescript": "~4.9.5",
"uglify-js": "^3.19.3",
"vite": "^4.1.5",
"vite-plugin-dts": "^1.7.2",
"vitest": "^0.34.6",
"vue-tsc": "^1.0.24",
"webdriverio": "^8.35.1"
}
}