-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
36 lines (36 loc) · 897 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
{
"name": "univer-plugins",
"type": "module",
"version": "0.5.1",
"private": true,
"packageManager": "[email protected]",
"author": "DreamNum Inc. <[email protected]>",
"license": "Apache-2.0",
"engines": {
"node": ">=18",
"pnpm": ">=9"
},
"scripts": {
"prepare": "simple-git-hooks",
"build": "pnpm --filter @univerjs/* build",
"test": "pnpm --filter @univerjs/* test",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "release-it"
},
"devDependencies": {
"@antfu/eslint-config": "^3.7.3",
"@release-it-plugins/workspaces": "^4.2.0",
"@release-it/conventional-changelog": "^9.0.0",
"eslint": "^9.12.0",
"lint-staged": "^15.2.10",
"release-it": "^17.9.0",
"simple-git-hooks": "^2.11.1"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}