-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
51 lines (51 loc) · 1.32 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
{
"name": "direct-vuex",
"version": "1.0.0-rc3",
"description": "Use and implement your Vuex store with TypeScript types. Compatible with the Vue 3 composition API.",
"author": "Paleo",
"files": [
"dist",
"types"
],
"main": "dist/direct-vuex.umd.js",
"module": "dist/direct-vuex.esm.js",
"types": "types/index.d.ts",
"scripts": {
"prepublishOnly": "npm run test",
"prepare": "npm run build",
"clear": "rimraf 'build/compiled-*/*'",
"tsc": "tsc",
"tsc-es5": "tsc --target ES5 --outDir build/compiled-es5",
"tsc:watch": "tsc --watch",
"make-bundles": "node build/make-bundles.js",
"build": "npm run clear && npm run tsc && npm run tsc-es5 && npm run make-bundles",
"lint": "tslint -p tsconfig.json -t verbose",
"test": "jest",
"test:watch": "jest --watch"
},
"peerDependencies": {
"vue": "3",
"vuex": "4"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"rollup": "^2.39.1",
"terser": "^5.6.0",
"ts-jest": "^26.5.2",
"tslint": "^6.1.3",
"typescript": "^4.2.2",
"vue": "^3.0.5",
"vuex": "^4.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paroi-tech/direct-vuex.git"
},
"license": "CC0-1.0",
"keywords": [
"vuex",
"typescript"
]
}