-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.67 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
{
"name": "agentforge",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"build:runner": "npx esbuild runtime/runner/entry.ts --bundle --platform=node --target=node18 --outfile=dist/runner.js --external:*.node",
"build:orchestrator": "npx esbuild orchestrator/cli-runner.ts --bundle --platform=node --target=node18 --outfile=dist/orchestrator-runner.js --external:*.node",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --max-warnings 80",
"consumers:all": "npx ts-node --project tsconfig.cli.json -e \"require('./consumers/index.ts')\"",
"cli": "npx ts-node --project tsconfig.cli.json cli/index.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.80.0",
"@creit.tech/stellar-wallets-kit": "^2.1.0",
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@next/mdx": "^15.5.4",
"@stellar/freighter-api": "^6.0.1",
"@stellar/stellar-sdk": "^15.1.0",
"@supabase/supabase-js": "^2.99.2",
"@types/three": "^0.183.1",
"@upstash/qstash": "^2.10.1",
"ably": "^2.20.0",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"framer-motion": "^12.38.0",
"next": "^15.5.13",
"openai": "^6.32.0",
"ora": "^9.3.0",
"react": "^18",
"react-dom": "^18",
"recharts": "^3.8.1",
"three": "^0.183.2",
"uuid": "^13.0.0"
},
"devDependencies": {
"@types/node": "^20.19.37",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "^15.0.0",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}