-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.16 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.16 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
{
"name": "opencodehub-monorepo",
"version": "0.3.2",
"private": true,
"description": "OpenCodeHub — Apache-2.0 code intelligence graph + MCP server for AI coding agents",
"license": "Apache-2.0",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=11.0.0"
},
"packageManager": "pnpm@11.1.0",
"workspaces": [
"packages/*"
],
"scripts": {
"test": "pnpm -r test",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"typecheck": "pnpm -r exec tsc --noEmit",
"banned-strings": "bash scripts/check-banned-strings.sh",
"check": "pnpm run lint && pnpm run typecheck && pnpm run test && pnpm run banned-strings",
"commit": "cz"
},
"devDependencies": {
"@biomejs/biome": "2.4.14",
"@commitlint/cli": "21.0.0",
"@commitlint/config-conventional": "20.5.3",
"@types/node": "25.6.0",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"lefthook": "2.1.6",
"license-checker-rseidelsohn": "4.4.2",
"tsx": "4.21.0",
"typescript": "6.0.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}