-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.39 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.39 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
{
"name": "chainshield-agent",
"version": "0.1.0",
"private": true,
"description": "ChainShield Agent — autonomous treasury and wallet protection.",
"type": "module",
"module": "src/risk-gate/server.ts",
"engines": {
"bun": ">=1.1.0"
},
"scripts": {
"dev": "bash scripts/dev.sh",
"dev:server": "bun run --watch src/risk-gate/server.ts",
"dev:web": "cd web && bunx --bun astro dev",
"start": "bun run src/risk-gate/server.ts",
"build": "bun run build:server && bun run build:web",
"build:server": "bun build ./src/risk-gate/server.ts --outdir ./dist --target bun --minify",
"build:web": "cd web && bunx --bun astro build",
"start:bundle": "bun run dist/server.js",
"preview:web": "cd web && bunx --bun astro preview",
"demo": "bun run src/cli/demo.ts",
"typecheck": "bun run typecheck:server && bun run typecheck:web",
"typecheck:server": "tsc --noEmit",
"typecheck:web": "cd web && bunx --bun astro check",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"clean": "rm -rf dist coverage .tsbuildinfo web/dist web/.astro"
},
"dependencies": {
"@0gfoundation/0g-storage-ts-sdk": "^1.2.8",
"@fastify/cors": "^11.2.0",
"ethers": "^6.13.4",
"fastify": "^5.1.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/bun": "^1.1.14",
"typescript": "^5.7.2"
}
}