-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 925 Bytes
/
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
{
"name": "plugin-decorator",
"version": "1.8.0",
"main": "./dist/esm/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./package.json": "./package.json"
},
"types": "./lib/index.d.ts",
"repository": "https://github.com/xiaobebe/plugin-decorator",
"license": "MIT",
"keywords": [],
"scripts": {
"dev": "father dev",
"build": "father build",
"test": "vitest run",
"prettier": "pretty-quick --staged",
"prepublishOnly": "npm run test && npm run build"
},
"pre-commit": [
"test",
"prettier"
],
"devDependencies": {
"@types/enzyme": "^3.10.12",
"bumpp": "^8.2.1",
"father": "^4.1.5",
"pre-commit": "^1.2.2",
"prettier": "^2.8.4",
"pretty-quick": "^3.1.3",
"vitest": "^0.23.4"
},
"dependencies": {
"lodash-decorators": "^6.0.1"
},
"files": [
"dist"
]
}