-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 964 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 964 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
{
"name": "herdctl-monorepo",
"private": true,
"license": "MIT",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "biome format --write packages/",
"test": "turbo test",
"typecheck": "turbo typecheck",
"security": "npx tsx agents/security/tools/scan.ts",
"security:save": "npx tsx agents/security/tools/scan.ts --save",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm build && changeset publish",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "2.4.3",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@types/node": "^20",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"turbo": "^2",
"typescript": "^5"
},
"packageManager": "pnpm@9.0.0",
"lint-staged": {
"packages/**/*.{ts,tsx,js,jsx,json}": [
"biome check --fix --no-errors-on-unmatched"
]
}
}