-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.02 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.02 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
104
105
{
"name": "context-simplo",
"version": "0.1.0",
"description": "Production-ready context database and MCP server for AI assistants. Provides code intelligence with hybrid search, call graphs, impact analysis, and semantic search for Cursor, VS Code, and Claude Desktop.",
"type": "module",
"main": "dist/index.js",
"bin": {
"context-simplo": "dist/cli/index.js"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc --project tsconfig.build.json",
"build:dashboard": "cd dashboard && pnpm build",
"test": "NODE_OPTIONS='--max-old-space-size=4096' vitest run",
"test:watch": "NODE_OPTIONS='--max-old-space-size=4096' vitest",
"test:coverage": "NODE_OPTIONS='--max-old-space-size=4096' vitest run --coverage",
"lint": "eslint src/ --ext .ts",
"lint:fix": "eslint src/ --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\" \"dashboard/src/**/*.{ts,tsx}\"",
"typecheck": "tsc --noEmit",
"docker:build": "docker build -t context-simplo:latest .",
"docker:run": "docker-compose up",
"prepare": "node -e \"try{require('husky').install()}catch(e){}\"",
"prepublishOnly": "npm run build && npm run typecheck"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"context-database",
"context-tool",
"code-intelligence",
"code-analysis",
"semantic-search",
"hybrid-search",
"vector-search",
"code-graph",
"call-graph",
"tree-sitter",
"cursor-ide",
"vscode",
"claude-desktop",
"ai-assistant",
"ai-tools",
"llm-tools",
"developer-tools",
"static-analysis",
"impact-analysis",
"dead-code-detection"
],
"author": "Context-Simplo Contributors",
"license": "MIT",
"files": [
"dist/",
"templates/",
".contextignore.default",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"@fastify/static": "^8.0.2",
"@fastify/websocket": "^11.0.1",
"@kreuzberg/tree-sitter-language-pack": "^1.3.3",
"@lancedb/lancedb": "^0.27.1",
"@modelcontextprotocol/sdk": "^1.0.4",
"better-sqlite3": "^11.8.1",
"chalk": "^5.4.1",
"chokidar": "^4.0.3",
"commander": "^12.1.0",
"dotenv": "^16.4.7",
"fastify": "^5.2.0",
"graphology": "^0.26.0",
"graphology-layout-forceatlas2": "^0.10.1",
"graphology-metrics": "^2.1.0",
"graphology-shortest-path": "^2.0.2",
"ignore": "^6.0.2",
"inquirer": "^12.3.0",
"ora": "^8.1.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@playwright/test": "^1.49.1",
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.10.2",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^9.18.0",
"husky": "^9.1.7",
"prettier": "^3.4.2",
"supertest": "^7.0.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"pnpm": {
"overrides": {
"tree-sitter": ">=0.22.0"
}
}
}