-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1010 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1010 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
{
"name": "deepcode-monorepo",
"version": "0.0.0",
"private": true,
"description": "DeepCode — Claude Code 的 DeepSeek 版(monorepo root)",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=22",
"pnpm": ">=9"
},
"packageManager": "pnpm@9.12.0",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "tsc -b",
"typecheck": "tsc -b --pretty",
"test": "pnpm -r test && vitest run --config vitest.scripts.config.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{ts,tsx,json,md,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,json,md,yml,yaml}\"",
"clean": "pnpm -r clean",
"prepare": "husky || true"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/node": "^22.10.0",
"eslint": "^9.16.0",
"husky": "^9.1.0",
"prettier": "^3.3.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.18.0",
"vitest": "^2.1.0"
}
}