-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.57 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
{
"name": "@typuex/typed-state",
"version": "0.1.0",
"description": "Adds type to vuex store state.",
"main": "./dist/index.d.ts",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "tsc --project tsconfig.test.json",
"build": "npm-run-all --sequential clean-dist compile",
"clean-dist": "rimraf ./dist",
"compile": "tsc --project tsconfig.build.json",
"preversion": "npm-run-all --sequential test build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/typuex/typed-state.git"
},
"keywords": [
"vuex",
"typescript",
"type-helper",
"vuex-types",
"vuex-typescript",
"typescript-vuex",
"vuex-ts",
"ts-vuex",
"vuex-typed",
"typed-vuex",
"vuex-types",
"types-vuex",
"vuex-state",
"vuex-state-typescript",
"typescript-vuex-state",
"vuex-state-ts",
"ts-vuex-state",
"vuex-state-typed",
"typed-vuex-state",
"vuex-typed-state"
],
"author": "xeptore <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/typuex/typed-state/issues"
},
"homepage": "https://github.com/typuex/typed-state#readme",
"devDependencies": {
"@tsconfig/node14": "^1.0.0",
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.18.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"typescript": "^4.1.3"
},
"dependencies": {
"utility-types": "^3.10.0"
},
"peerDependencies": {
"typescript": "^4.1.3"
}
}