-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.05 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
{
"name": "vvmodal",
"version": "1.4.3",
"main": "index.cjs.js",
"module": "index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "pnpm tsup",
"dev": "pnpm tsup --watch",
"prepack": "pnpm build"
},
"author": "wayne",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^16.0.2",
"@commitlint/config-angular": "^16.0.0",
"@types/node": "^17.0.8",
"@types/react": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"cz-customizable": "^6.3.0",
"eslint": "^8.6.0",
"eslint-config-alloy": "^4.4.0",
"eslint-plugin-react": "^7.29.4",
"husky": "^7.0.4",
"prettier": "^2.5.1",
"react": "^18.0.0",
"tsup": "^5.12.6",
"typescript": "^4.5.4"
},
"lint-staged": {
"src/**/*.{js,ts}": "eslint --fix"
},
"commitlint": {
"extends": [
"@commitlint/config-angular"
]
},
"private": false,
"peerDependencies": {
"react": "^17.0.0"
},
"files": [
"dist",
"index.js",
"index.cjs.js"
]
}