-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.18 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
{
"name": "context-room",
"version": "0.1.0",
"description": "Documentation control room for the era of AI agent loops.",
"type": "module",
"homepage": "https://github.com/Swarek/context-room#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Swarek/context-room.git"
},
"bugs": {
"url": "https://github.com/Swarek/context-room/issues"
},
"bin": {
"context-room": "bin/context-room.mjs"
},
"exports": {
".": "./src/context_room.mjs"
},
"files": [
"bin/",
"src/",
"docs/",
"examples/",
"schemas/",
"README.md",
"LICENSE"
],
"scripts": {
"start": "node bin/context-room.mjs start",
"init": "node bin/context-room.mjs init",
"doctor": "node bin/context-room.mjs doctor",
"test": "node --check src/context_room.mjs && node --check bin/context-room.mjs && node --test test/*.test.mjs",
"pack:dry-run": "npm pack --dry-run"
},
"keywords": [
"ai-agent",
"context",
"documentation",
"docs",
"skills",
"agent-loops",
"local-first",
"review-queue",
"developer-tools"
],
"author": "Mathis Blanc",
"license": "MIT",
"engines": {
"node": ">=20"
}
}