-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
128 lines (128 loc) · 3.42 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@idevelopthings/vue-class-stores",
"version": "1.0.16",
"type": "module",
"description": "Powerful class based stores for vue 3",
"keywords": [
"vue",
"vue3",
"state-management",
"store",
"state",
"vuex",
"vue3-state-management",
"vue3-store",
"vue3-state",
"vue3-vuex"
],
"author": {
"name": "iDevelopThings",
"url": "https://github.com/idevelopthings"
},
"readme": "readme.md",
"repository": {
"type": "git",
"url": "https://github.com/idevelopthings/vue-class-stores"
},
"scripts": {
"dev": "vite",
"dev:generator": "cross-env DEBUG_MODE=true vite",
"build": "tsc && vite build",
"dist": "node build.js",
"preview": "vite preview",
"test": "vitest run --no-threads",
"webstorm-integration": "vitest --watch --reporter=dot --reporter=json --outputFile=.vitest-result.json",
"tsc:types:lib": "tsc --declaration --emitDeclarationOnly --project ./tsconfig.lib.json",
"tsc:types:vite-pkg": "tsc --declaration --project ./tsconfig.vite-plugin.json"
},
"license": "MIT",
"sideEffects": false,
"main": "./dist/Lib/index.js",
"types": "./dist/Lib/index.d.ts",
"typesVersions": {
"*": {
"vue": [
"./dist/Lib/index.d.ts"
],
"dev-tools": [
"./dist/DevTools/index.d.ts"
],
"vite": [
"./dist/VitePlugin/VitePlugin/index.d.ts"
],
"common": [
"./dist/Common/index.d.ts"
]
}
},
"exports": {
".": {
"types": "./dist/Lib/index.d.ts",
"import": "./dist/Lib/index.js",
"require": "./dist/Lib/index.cjs",
"node": "./dist/Lib/index.cjs"
},
"./vue": {
"import": "./dist/Lib/index.js",
"require": "./dist/Lib/index.cjs",
"node": "./dist/Lib/index.cjs"
},
"./dev-tools": {
"import": "./dist/DevTools/index.js",
"require": "./dist/DevTools/index.cjs",
"node": "./dist/DevTools/index.cjs"
},
"./vite": {
"import": "./dist/VitePlugin/VitePlugin/index.js",
"require": "./dist/VitePlugin/VitePlugin/index.js",
"node": "./dist/VitePlugin/VitePlugin/index.js"
},
"./common": {
"import": "./dist/Common/index.js",
"require": "./dist/Common/index.cjs",
"node": "./dist/Common/index.cjs"
}
},
"files": [
"dist/Common/**/*",
"dist/DevTools/**/*",
"dist/Lib/**/*",
"dist/VitePlugin/**/*",
"dist/index.js",
"dist/index.d.ts"
],
"dependencies": {
"@idevelopthings/reflect-extensions": "^0.0.3",
"@rollup/plugin-typescript": "^11.1.0",
"@rollup/pluginutils": "^5.0.2",
"@vue/devtools-api": "^6.5.0",
"fs-jetpack": "^5.1.0",
"klona": "^2.0.6",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"lodash.throttle": "^4.1.1",
"lodash.uniq": "^4.5.0",
"vue": "^3.2.47"
},
"devDependencies": {
"@types/estree": "^1.0.1",
"@types/lodash.get": "^4.4.7",
"@types/lodash.set": "^4.3.7",
"@types/lodash.throttle": "^4.1.7",
"@types/lodash.uniq": "^4.5.7",
"@vitejs/plugin-vue": "^4.2.1",
"@vue/test-utils": "^2.3.2",
"autoprefixer": "^10.4.14",
"cross-env": "^7.0.3",
"jsdom": "^22.0.0",
"postcss": "^8.4.23",
"postcss-import": "^15.1.0",
"tailwindcss": "^3.3.2",
"typescript": "^5.0.4",
"vite": "^4.3.4",
"vite-plugin-build": "^0.9.0",
"vite-plugin-dts": "^2.3.0",
"vite-plugin-inspect": "^0.7.24",
"vitest": "latest"
}
}