-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.23 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.23 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@jubilee/core",
"version": "1.0.0",
"description": "Jubilee Core - A Triune AI Agent (Mind, Prophet, Will) for research, coding, and operations.",
"type": "module",
"main": "dist/core.js",
"types": "dist/core.d.ts",
"exports": {
".": {
"import": "./dist/core.js",
"types": "./dist/core.d.ts"
}
},
"files": [
"dist",
"README.md"
],
"bin": {
"jubilee": "./src/index.tsx",
"jubilee-sprint": "./src/sprint-runner.ts"
},
"scripts": {
"start": "bun run src/index.tsx",
"sprint": "bun run src/sprint-runner.ts",
"dev": "bun --watch run src/index.tsx",
"build": "tsc -p tsconfig.build.json",
"prepublishOnly": "bun run build",
"typecheck": "tsc --noEmit",
"test": "bun test",
"test:watch": "bun test --watch",
"postinstall": "playwright install chromium",
"db:push": "drizzle-kit push",
"db:generate": "drizzle-kit generate"
},
"dependencies": {
"@coinbase/agentkit": "^0.10.4",
"@coinbase/agentkit-langchain": "^0.3.0",
"@hono/node-server": "^1.19.9",
"@lancedb/lancedb": "^0.24.1",
"@lancedb/lancedb-darwin-arm64": "^0.24.1",
"@langchain/anthropic": "^1.1.3",
"@langchain/core": "^1.1.0",
"@langchain/exa": "^1.0.1",
"@langchain/google-genai": "^2.0.0",
"@langchain/ollama": "^1.0.3",
"@langchain/openai": "^1.1.3",
"@langchain/tavily": "^1.0.1",
"@modelcontextprotocol/sdk": "^1.26.0",
"@types/jsonwebtoken": "^9.0.10",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.45.1",
"exa-js": "^2.2.0",
"gray-matter": "^4.0.3",
"hono": "^4.11.9",
"ink": "^6.5.1",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"jsonwebtoken": "^9.0.3",
"langsmith": "^0.4.10",
"pg": "^8.18.0",
"playwright": "^1.52.0",
"postgres": "^3.4.8",
"react": "^19.2.0",
"uuid": "^13.0.0",
"viem": "^2.45.1",
"zod": "^4.1.13"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@types/bun": "latest",
"@types/jest": "^29.5.14",
"@types/pg": "^8.16.0",
"@types/react": "^19.2.7",
"babel-jest": "^30.2.0",
"drizzle-kit": "^0.31.8",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.9.3"
}
}