-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 2.01 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
{
"name": "@jejunetwork/autocrat",
"version": "0.1.0",
"dependencies": {
"@elizaos/core": "^1.6.4",
"@elysiajs/cors": "^1.4.0",
"@elysiajs/eden": "^1.4.0",
"@jejunetwork/auth": "workspace:*",
"@jejunetwork/config": "workspace:*",
"@jejunetwork/contracts": "workspace:*",
"@jejunetwork/eliza-plugin": "workspace:*",
"@jejunetwork/db": "workspace:*",
"@jejunetwork/kms": "workspace:*",
"@jejunetwork/messaging": "workspace:*",
"@jejunetwork/sdk": "workspace:*",
"@jejunetwork/shared": "workspace:*",
"@jejunetwork/types": "workspace:*",
"@tanstack/react-query": "^5.79.0",
"elysia": "^1.4.19",
"lucide-react": "^0.513.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router-dom": "^7.11.0",
"viem": "2.43.3",
"wagmi": "^2.17.4",
"zod": "4.2.1",
"@noble/hashes": "^2.0.1"
},
"devDependencies": {
"@jejunetwork/tests": "workspace:*",
"@playwright/test": "1.57.0",
"@synthetixio/synpress": "4.1.1",
"@types/bun": "latest",
"@types/react": "^19.1.6",
"@types/react-dom": "^19.1.6",
"autoprefixer": "^10.4.21",
"concurrently": "^9.2.1",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.17",
"typescript": "5.9.3"
},
"description": "Autonomous governance engine",
"main": "api/server.ts",
"type": "module",
"scripts": {
"dev": "bun run scripts/dev.ts",
"dev:api": "bun --watch api/worker.ts",
"build": "bun run scripts/build.ts",
"build:worker": "bun run scripts/build.ts",
"start": "bun run scripts/serve.ts",
"deploy": "bun run scripts/deploy.ts",
"seed": "bun run scripts/seed-agents.ts",
"seed:testnet": "bun run scripts/seed-agents.ts --network testnet",
"seed:mainnet": "bun run scripts/seed-agents.ts --network mainnet",
"test": "bun test tests/unit/",
"test:e2e": "bunx playwright test tests/e2e/ --config playwright.config.ts",
"test:synpress": "bunx playwright test tests/synpress/ --config synpress.config.ts",
"typecheck": "tsc --noEmit"
}
}