-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.19 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
{
"type": "module",
"version": "1.0.13",
"packageManager": "[email protected]",
"scripts": {
"core:build": "pnpm --filter js-utils-es... build",
"verify-commit": "verify-commit-msg",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"release": "bumpp package.json packages/*/package.json --all",
"bench": "vitest bench",
"test": "vitest",
"prepare": "git-scm-hooks",
"docs:dev": "pnpm --parallel --filter docs... dev",
"docs:build": "pnpm --filter docs... build",
"docs:preview": "pnpm -C docs preview",
"typecheck": "pnpm -r --filter js-utils-es typecheck",
"gen-changelog": "esno ./scripts/genFuncUtils.ts && esno ./scripts/changelog.ts"
},
"devDependencies": {
"@antfu/eslint-config": "^2.22.0",
"@types/md5": "^2.3.5",
"@types/node": "^18.19.33",
"bumpp": "^9.4.1",
"eslint": "^9.7.0",
"esno": "^4.7.0",
"execa": "^9.3.0",
"git-scm-hooks": "^0.0.7",
"globby": "^14.0.2",
"md5": "^2.3.0",
"tsup": "^8.1.0",
"typescript": "^5.4.5",
"verify-commit-msg": "^0.0.10",
"vitest": "^1.5.2",
"zx": "^8.1.4"
},
"git-hooks": {
"pre-commit": "npm run lint",
"commit-msg": "npm run verify-commit"
}
}