forked from corsairdev/corsair
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.34 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@corsair/root",
"private": true,
"type": "module",
"packageManager": "pnpm@10.20.0",
"scripts": {
"build": "turbo --filter \"./packages/*\" build",
"dev": "turbo --filter \"./packages/*\" dev",
"clean": "turbo --filter \"./packages/*\" clean && rm -rf node_modules",
"format": "biome format . --write",
"lint": "biome check .",
"lint:fix": "biome check . --fix --unsafe",
"test": "turbo --filter \"./packages/*\" test",
"release": "turbo --filter \"./packages/*\" build && bumpp && pnpm -r publish --access public --no-git-checks",
"release:no-build": "bumpp && pnpm -r publish --access public --no-git-checks --tag next",
"release:canary": "turbo --filter \"./packages/*\" build && bumpp && pnpm -r publish --access public --tag canary --no-git-checks",
"bumpp": "bumpp",
"typecheck": "tsc --build",
"generate:plugin": "node --experimental-strip-types scripts/generate-plugin.ts",
"generate:plugin-from-json": "node --experimental-strip-types scripts/generate-plugin-from-json.ts",
"generate:labeler-config": "node scripts/generate-labeler-config.mjs",
"generate:docs": "tsx --conditions=dev-source scripts/generate-plugin-docs.ts",
"generate:docs:all": "tsx --conditions=dev-source scripts/generate-plugin-docs.ts --all",
"build:explorer-catalog": "tsx --conditions=dev-source scripts/build-explorer-catalog.ts",
"validate:plugins": "tsx scripts/validate-plugins.ts",
"validate:docs": "tsx scripts/lint-docs-imports.ts",
"prepare": "simple-git-hooks"
},
"pnpm": {
"overrides": {
"@types/react": "^19",
"@types/react-dom": "^19",
"zod": "4.4.3"
},
"onlyBuiltDependencies": [
"better-sqlite3"
]
},
"devDependencies": {
"@biomejs/biome": "2.3.5",
"@total-typescript/ts-reset": "^0.5.1",
"@types/bun": "^1.3.1",
"@types/node": "^24.9.2",
"bumpp": "^10.3.1",
"lint-staged": "^17.0.8",
"simple-git-hooks": "^2.13.1",
"tinyglobby": "^0.2.15",
"tsx": "^4.20.6",
"turbo": "^2.6.1",
"typescript": "catalog:",
"yaml": "^2.8.1"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged",
"commit-msg": "node scripts/check-commit-msg.mjs $1",
"pre-push": "pnpm typecheck"
},
"lint-staged": {
"*": "biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
}
}