-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.59 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
{
"name": "@cstart/coldstart",
"version": "2.3.2",
"mcpName": "io.github.AkashGoenka/coldstart",
"publishConfig": {
"access": "public"
},
"description": "Self-maintaining codebase memory for AI coding agents: an AST index that answers which files matter, plus agent-written notes that flag themselves stale when the code changes. No embeddings, no API key. CLI + MCP.",
"type": "module",
"bin": {
"coldstart": "./dist/index.js",
"coldstart-mcp": "./dist/index.js"
},
"main": "./dist/index.js",
"files": [
"dist",
"hooks",
"templates",
"vendor/wasm"
],
"keywords": [
"memory",
"codebase-memory",
"agent-memory",
"ai-memory",
"context",
"cli",
"mcp",
"ai",
"codebase",
"navigation",
"code-navigation",
"agent",
"claude-code",
"cursor",
"codex",
"dependency",
"indexer",
"tree-sitter"
],
"license": "MIT",
"author": "Akash Goenka (https://github.com/AkashGoenka)",
"homepage": "https://coldstartmcp.dev/",
"repository": {
"type": "git",
"url": "git+https://github.com/AkashGoenka/coldstart.git"
},
"bugs": {
"url": "https://github.com/AkashGoenka/coldstart/issues"
},
"scripts": {
"build": "tsc --noEmit false",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@vscode/ripgrep": "^1.18.0",
"web-tree-sitter": "^0.26.10"
},
"devDependencies": {
"@types/node": "^22",
"typescript": "^5",
"vitest": "^3"
},
"engines": {
"node": ">=18"
}
}