-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.03 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
{
"name": "vuex-ts-enhance",
"version": "1.0.0",
"description": "vuex types enhance",
"main": "./lib/index.js",
"module": "./esm/index.js",
"types": "./esm/index.d.ts",
"exports": {
"types": "./esm/index.d.ts",
"import": "./esm/index.js",
"require": "./lib/index.js",
"default": "./esm/index.js"
},
"files": [
"lib",
"esm"
],
"keywords": [
"vuex",
"typescript",
"vue"
],
"repository": {
"type": "git",
"url": "https://github.com/zWingz/vuex-ts-enhance"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^26.6.1",
"poi": "^12.7.5",
"ts-jest": "^26.4.3",
"typescript": "^4.7.2",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11",
"vuex": "^3.6.2"
},
"scripts": {
"dev": "poi --serve",
"build:cjs": "tsc -p .",
"build:esm": "tsc -p ./tsconfig.esm.json",
"build": "yarn build:cjs && yarn build:esm",
"prepublishOnly": "yarn build",
"test": "jest"
},
"author": "[email protected]",
"license": "MIT"
}