-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.31 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
{
"name": "@superdesign/loopbase",
"version": "0.2.0",
"description": "Cross-session agent memory — discover, read, search, and hand off work across local AI agent sessions (Claude Code, Codex, pi).",
"type": "module",
"license": "AGPL-3.0-only",
"author": "AI Jason",
"homepage": "https://github.com/superdesigndev/loopbase#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/superdesigndev/loopbase.git"
},
"bugs": {
"url": "https://github.com/superdesigndev/loopbase/issues"
},
"keywords": [
"ai",
"agents",
"claude-code",
"codex",
"cli",
"memory",
"context",
"worklog",
"bun"
],
"files": [
"src",
"README.md",
"SKILL.md",
"INSTALL.md",
"LICENSE"
],
"bin": {
"loopbase": "./src/cli.ts",
"lb": "./src/cli.ts"
},
"scripts": {
"loopbase": "bun run src/cli.ts",
"lb": "bun run src/cli.ts",
"serve:dev": "bun --hot run src/cli.ts serve",
"build": "bun build ./src/cli.ts --compile --outfile dist/loopbase",
"lint": "bun run src/lint.ts",
"typecheck": "tsc --noEmit",
"check": "bun run lint && bun run typecheck && bun test",
"test": "bun test"
},
"engines": {
"bun": ">=1.3.0"
},
"devDependencies": {
"@types/node": "^25.9.3",
"bun-types": "^1.3.14"
}
}