-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 957 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 957 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
{
"name": "deputies",
"version": "0.27.1",
"private": true,
"type": "module",
"packageManager": "pnpm@11.5.2",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"prepare": "node -e \"const fs=require('fs'); if (fs.existsSync('.git') && process.env.NODE_ENV !== 'production') require('child_process').execFileSync('pnpm', ['exec', 'husky'], { stdio: 'inherit' })\"",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "node --max-old-space-size=4096 ./node_modules/eslint/bin/eslint.js .",
"test": "pnpm -r --if-present test",
"typecheck": "pnpm -r --if-present typecheck",
"check": "pnpm format:check && pnpm lint && pnpm typecheck && pnpm test"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.4.1",
"globals": "^17.6.0",
"husky": "^9.1.7",
"prettier": "^3.7.4",
"prettier-plugin-astro": "^0.14.1",
"typescript-eslint": "^8.61.0"
}
}