-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.29 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.29 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
{
"name": "openseed",
"version": "0.0.1",
"description": "Autonomous AI creatures that live in Docker containers. They think, act, sleep, dream, and modify their own code.",
"author": "RS Douglas",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/openseed-dev/openseed.git"
},
"engines": {
"node": ">=18"
},
"type": "module",
"bin": {
"seed": "./src/cli/index.ts",
"openseed": "./src/cli/index.ts"
},
"scripts": {
"up": "tsx src/cli/index.ts up",
"spawn": "tsx src/cli/index.ts spawn",
"start": "tsx src/cli/index.ts start",
"stop": "tsx src/cli/index.ts stop",
"list": "tsx src/cli/index.ts list",
"destroy": "tsx src/cli/index.ts destroy",
"fork": "tsx src/cli/index.ts fork",
"build:dashboard": "cd dashboard && pnpm build",
"restart": "./scripts/restart.sh",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.44",
"@anthropic-ai/sdk": "^0.74.0",
"@true-and-useful/janee": "^0.12.0",
"ai": "^6.0.86",
"better-sqlite3": "^12.8.0",
"tsx": "^4.21.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.19.11",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}