forked from paroi-tech/direct-vuex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.29 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
{
"name": "direct-vuex",
"version": "0.10.4",
"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 build && npm run test",
"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": "*",
"vuex": "*"
},
"devDependencies": {
"@types/jest": "^25.1.2",
"jest": "^25.1.0",
"rimraf": "^3.0.2",
"rollup": "^1.31.1",
"terser": "^4.6.3",
"ts-jest": "^25.2.0",
"tslint": "^6.0.0",
"typescript": "^3.7.5",
"vue": "^2.6.11",
"vuex": "^3.1.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paleo/direct-vuex.git"
},
"license": "CC0-1.0",
"keywords": [
"vuex",
"typescript"
]
}