-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 939 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
{
"name": "@es-project-template/antfu-lib-monorepo",
"type": "module",
"version": "0.0.1",
"private": true,
"description": "Create a lib monorepo with antfu's code style",
"author": "Naily Zero <[email protected]> (https://naily.cc)",
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint .",
"postinstall": "npx simple-git-hooks",
"test": "vitest"
},
"devDependencies": {
"@antfu/eslint-config": "^3.11.0",
"@changesets/cli": "^2.27.10",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.0",
"bumpp": "^9.8.1",
"eslint": "^9.15.0",
"js-yaml": "^4.1.0",
"lint-staged": "^15.2.10",
"simple-git-hooks": "^2.11.1",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "5.6.3",
"vitest": "^2.1.6",
"vue-tsc": "^2.1.10"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}