-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1001 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1001 Bytes
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
{
"name": "@e18e/monorepo",
"type": "module",
"version": "0.0.1",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"dev": "pnpm -C docs run dev",
"build": "pnpm -C docs run build",
"build:ci": "bash scripts/build.sh",
"serve": "pnpm -C docs run serve",
"lint": "eslint --cache .",
"lint:fix": "pnpm lint --fix",
"add-replacement": "node ./scripts/add-replacement.js"
},
"devDependencies": {
"@antfu/eslint-config": "^5.3.0",
"@types/node": "^24.5.2",
"eslint": "^9.35.0",
"lint-staged": "^16.1.6",
"simple-git-hooks": "^2.13.1",
"sponsorkit": "^17.0.0",
"typescript": "~5.9.2"
},
"pnpm": {
"peerDependencyRules": {
"allowAny": [
"eslint"
]
},
"onlyBuiltDependencies": [
"esbuild",
"simple-git-hooks"
]
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md}": [
"eslint --cache --fix"
]
}
}