-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.28 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
{
"name": "vuex-composition",
"version": "1.0.3",
"description": "Helpers to use Vuex store form Vue Composition API",
"author": "echo008",
"license": "MIT",
"keywords": [
"vue",
"vuex",
"composition",
"setup",
"composition-api",
"store",
"state management"
],
"type": "module",
"files": ["dist"],
"main": "src/index.ts",
"module": "dist/vuex-composition.js",
"browser": "dist/vuex-composition.iife.js",
"typings": "dist/vuex-composition.d.ts",
"scripts": {
"build": "run-p type-check build-only",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/echo008/vuex-composition.git"
},
"bugs": {
"url": "https://github.com/echo008/vuex-composition/issues"
},
"homepage": "https://github.com/echo008/vuex-composition#readme",
"devDependencies": {
"@types/jsdom": "^21.1.1",
"@vue/test-utils": "^2.4.1",
"jsdom": "^22.1.0",
"npm-run-all": "^4.1.5",
"typescript": "^5.1.6",
"vite": "^4.4.9",
"vitest": "^0.34.1",
"vue": "^3.3.4",
"vue-tsc": "^1.8.8",
"vuex": "^4.1.0"
},
"peerDependencies": {
"vue": "^3.3.4",
"vuex": "^4.1.0"
}
}