-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.33 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.33 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
{
"name": "aegis-agent-wallet",
"description": "Aegis agentic wallet framework for Solana",
"module": "src/api/server.ts",
"type": "module",
"private": true,
"scripts": {
"start": "bun run src/api/server.ts",
"demo:agent": "bun run scripts/agent-cli.tsx --name agent-alpha",
"db:generate": "bun drizzle-kit generate --config=drizzle.config.ts",
"db:migrate": "bun run scripts/dbMigrate.ts",
"db:push": "bun drizzle-kit push --config=drizzle.config.ts",
"aegis:init": "bun run db:migrate",
"test": "bun test",
"test:watch": "bun test --watch",
"test:privy-live": "PRIVY_LIVE_TEST=true bun test tests/privy.live.test.ts"
},
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^19.2.14",
"drizzle-kit": "^0.31.9",
"pino-pretty": "^13.1.3"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@hono/swagger-ui": "^0.5.3",
"@hono/zod-openapi": "^1.2.2",
"@openai/agents": "^0.5.2",
"@orca-so/whirlpools": "^7.0.1",
"@privy-io/node": "^0.9.0",
"@solana/kit": "^6.1.0",
"@solana/spl-token": "^0.4.14",
"@solana/web3.js": "^1.98.4",
"better-sqlite3": "^12.6.2",
"drizzle-orm": "^0.45.1",
"hono": "^4.12.2",
"ink": "^6.8.0",
"openai": "^6.25.0",
"pino": "^10.3.1",
"react": "^19.2.4",
"zod": "^4.3.6"
}
}