-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.26 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.26 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
{
"name": "solana_ai_multimodal-agent",
"version": "0.0.0",
"scripts": {
"goal": "bun run examples/example-goal.ts",
"task": "bun run examples/example-basic.ts",
"twitter": "bun run examples/example-twitter.ts",
"api": "bun run examples/example-api.ts",
"test": "bun run packages/core",
"build": "pnpm --dir packages/core run build",
"release": "pnpm build && pnpm prettier && npx lerna publish --no-private --force-publish",
"prettier-check": "pnpx prettier --check packages",
"prettier": "pnpx prettier --write packages",
"knip": "knip",
"backend:dev": "cd backend && npm run start:dev",
"backend:build": "cd backend && npm run build",
"backend:start": "cd backend && npm run start:prod",
"backend:test": "cd backend && npm run test",
"backend:test:e2e": "cd backend && npm run test:e2e"
},
"dependencies": {
"@mendable/firecrawl-js": "^1.15.7",
"ajv": "^8.17.1",
"chalk": "^5.4.1",
"lerna": "^8.1.9",
"prettier": "^3.4.2",
"readline": "^1.3.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.10.5",
"knip": "^5.43.1",
"typescript": "~5.6.2"
}
}