-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 4.5 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 4.5 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "codesight-mcp",
"private": true,
"version": "0.1.0",
"description": "CodeSight MCP Server - Working TypeScript implementation with real SQLite indexing and Claude Desktop integration",
"type": "module",
"scripts": {
"client:dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"server:dev": "nodemon",
"dev": "concurrently \"npm run client:dev\" \"npm run server:dev\"",
"check": "tsc --noEmit",
"type-check": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"build:all": "npm run build && cd typescript-mcp && npm run build",
"test": "npm run test:unit",
"test:all": "npm run test:unit && npm run test:integration && npm run test:performance",
"test:unit": "npm run test:typescript && npm run test:rust",
"test:typescript": "vitest run --config ./typescript-mcp/vitest.config.ts",
"test:rust": "cd rust-core && cargo test",
"test:integration": "npm run test:contract && npm run test:e2e",
"test:contract": "vitest run --config ./typescript-mcp/vitest.config.ts tests/contract",
"test:e2e": "vitest run --config ./vitest.config.ts tests/integration/e2e-workflows.test.ts",
"test:performance": "npm run test:benchmarks && npm run test:memory",
"test:benchmarks": "cd rust-core && cargo bench",
"test:memory": "cd rust-core/crates/core && cargo bench --bench memory_benchmarks",
"test:load": "cd tests/load && k6 run api_load_test.js",
"test:quickstart": "npm run test:claude-desktop && npm run test:vscode",
"test:claude-desktop": "vitest run --config ./vitest.config.ts tests/integration/claude-desktop.test.ts",
"test:vscode": "vitest run --config ./vitest.config.ts tests/integration/vscode.test.ts",
"test:integration:all": "npm run test:claude-desktop && npm run test:vscode && npm run test:e2e",
"test:coverage": "vitest run --config ./typescript-mcp/vitest.config.ts --coverage",
"test:watch": "vitest --config ./typescript-mcp/vitest.config.ts",
"build:frontend": "tsc -b && vite build",
"build:mcp": "cd typescript-mcp && npm run build",
"build:api": "cd api && npm run build",
"build:rust": "cd rust-core && cargo build --release",
"build:native": "cd typescript-mcp && npm run build:native",
"dev:mcp": "cd typescript-mcp && npm run dev",
"dev:api": "cd api && npm run dev",
"lint:mcp": "cd typescript-mcp && npm run lint",
"lint:api": "cd api && npm run lint",
"lint:rust": "cd rust-core && cargo clippy --all-targets --all-features -- -D warnings",
"test:mcp": "cd typescript-mcp && npm test",
"test:api": "cd api && npm test",
"lint:docs": "markdownlint '**/*.md' --ignore node_modules --ignore target --ignore dist",
"test:license": "npx license-checker --production --onlyAllow 'MIT;Apache-2.0;BSD;ISC;BSD-2-Clause;BSD-3-Clause'",
"quality": "npm run type-check && npm run lint && npm run format:check",
"quality:fix": "npm run lint:fix && npm run format",
"ci": "npm run quality && npm run test:all",
"ci:rust": "cd rust-core && cargo fmt --check && cargo clippy --all-targets --all-features -- -D warnings && cargo test"
},
"dependencies": {
"clsx": "^2.1.1",
"cors": "^2.8.5",
"dotenv": "^17.2.1",
"express": "^4.21.2",
"lucide-react": "^0.511.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^7.3.0",
"tailwind-merge": "^3.0.2",
"zustand": "^5.0.3"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
"@types/cors": "^2.8.19",
"@types/express": "^4.17.21",
"@types/jest": "^30.0.0",
"@types/node": "^22.15.30",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vercel/node": "^5.3.6",
"@vitejs/plugin-react": "^4.4.1",
"autoprefixer": "^10.4.21",
"babel-plugin-react-dev-locator": "^1.0.0",
"concurrently": "^9.2.0",
"eslint": "^9.25.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"jest": "^30.1.3",
"nodemon": "^3.1.10",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"tailwindcss": "^3.4.17",
"ts-jest": "^29.4.4",
"tsx": "^4.20.3",
"typescript": "~5.8.3",
"typescript-eslint": "^8.30.1",
"vite": "^6.3.5",
"vite-plugin-trae-solo-badge": "^1.0.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.9"
}
}