-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.02 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.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
{
"name": "continuum",
"version": "0.1.0",
"description": "Your development memory. For life. — Watches git commits, extracts decisions & patterns via Claude CLI, serves context to any AI tool via MCP.",
"author": "Joao Castro <dev@joaocastro.com> (https://github.com/devjoaocastro)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/devjoaocastro/continuum.git"
},
"homepage": "https://github.com/devjoaocastro/continuum",
"bugs": {
"url": "https://github.com/devjoaocastro/continuum/issues"
},
"keywords": [
"ai-memory",
"mcp",
"claude",
"context",
"git",
"developer-tools",
"ai-tools",
"cursor",
"cline",
"continuum",
"knowledge-base",
"sqlite",
"local-first"
],
"bin": {
"continuum": "./src/index.ts"
},
"scripts": {
"start": "bun src/index.ts",
"dev": "bun --watch src/index.ts",
"build": "bun build --compile src/index.ts --outfile continuum"
},
"devDependencies": {
"@types/bun": "latest"
}
}