-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.13 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
{
"name": "cottagecode",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Pixel townmap for agent fleets. Each cottage is one agent. Smoke means working.",
"license": "MIT",
"author": "Jack Arturo <support@verygoodplugins.com>",
"keywords": [
"agents",
"agent-fleet",
"pixel",
"townmap",
"claude-code",
"observability",
"cottagecode"
],
"repository": {
"type": "git",
"url": "git+https://github.com/verygoodplugins/cottagecode.git"
},
"bugs": {
"url": "https://github.com/verygoodplugins/cottagecode/issues"
},
"homepage": "https://github.com/verygoodplugins/cottagecode#readme",
"bin": {
"cottagecode": "./src/feed.mjs"
},
"scripts": {
"start": "node src/feed.mjs",
"once": "node src/feed.mjs --once",
"build:demo": "node scripts/build-demo.mjs",
"deploy:demo": "node scripts/deploy-demo.mjs",
"test": "node --test",
"test:browser": "node scripts/browser-smoke.mjs",
"test:ambience": "node scripts/browser-ambience-smoke.mjs",
"test:night": "node scripts/browser-night-smoke.mjs"
},
"engines": {
"node": ">=22.13"
}
}