-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 3.14 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 3.14 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
62
63
64
65
66
67
68
{
"name": "codegraph",
"version": "0.1.0",
"private": true,
"description": "Visual Codebase Knowledge Graph",
"type": "module",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --concurrency 22",
"lint": "turbo run lint",
"test": "turbo run test",
"test:integration": "pnpm --filter @codegraph/graph test:integration && pnpm --filter @codegraph/plugin-nlp test:integration && pnpm --filter @codegraph/mcp-server test:integration",
"audit:prod": "pnpm audit --prod --audit-level high",
"audit:consumer": "node scripts/release/audit-consumer-tree.mjs",
"test:e2e": "playwright test",
"test:scripts": "vitest run --config vitest.config.ts",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:db": "docker-compose up -d falkordb",
"docker:logs": "docker-compose logs -f",
"docker:reset": "docker-compose down -v && docker-compose up -d falkordb",
"start": "docker-compose up -d falkordb && turbo run dev --concurrency 15",
"stop": "docker-compose down",
"typecheck": "turbo run typecheck",
"build:mcpb": "pnpm turbo run build --filter=@codegraph/mcpb && pnpm --filter @codegraph/mcpb exec mcpb validate dist && pnpm --filter @codegraph/mcpb exec mcpb pack dist",
"build:npm": "pnpm turbo run build --filter=@codegraph/mcp-server... --filter=@codegraph/api... --filter=@codegraph/dashboard && node packages/npm-package/build.mjs",
"pack:npm": "pnpm build:npm && pnpm validate:npm",
"validate:npm": "node scripts/release/validate-package.mjs packages/npm-package/dist",
"smoke:npm": "node scripts/release/smoke-package.mjs",
"smoke:dashboard-source": "pnpm --filter @codegraph/api test:dist-boot",
"verify:release-tag": "node scripts/release/verify-release-tag.mjs",
"release:check": "pnpm pack:npm && pnpm smoke:dashboard-source && pnpm audit:consumer && pnpm smoke:npm",
"build:dashboard": "pnpm turbo run build --filter=@codegraph/api... --filter=@codegraph/dashboard",
"dashboard": "pnpm build:dashboard && pnpm --filter @codegraph/api start"
},
"devDependencies": {
"@huggingface/transformers": "^3.8.1",
"@playwright/test": "^1.60.0",
"@types/node": "^22.19.19",
"kuzu": "0.11.3",
"prettier": "^3.8.3",
"tsx": "^4.22.3",
"turbo": "^2.9.16",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"packageManager": "pnpm@9.15.4+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0",
"engines": {
"node": ">=20.0.0"
},
"pnpm": {
"overrides": {
"brace-expansion@>=2.0.0 <2.1.4": "2.1.4",
"@hono/node-server@<1.19.15": "1.19.15",
"hono@<4.12.34": "4.12.34",
"js-yaml@>=3.0.0 <3.15.1": "3.15.1",
"postcss@<8.5.23": "8.5.23",
"protobufjs@<7.6.5": "7.6.5",
"sharp@<0.35.0": "0.35.0",
"tar@<7.5.21": "7.5.21",
"undici@>=7.0.0 <7.29.0": "7.29.0"
}
}
}