-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (36 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (36 loc) · 1.52 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
{
"name": "shield-suite",
"version": "1.0.0",
"private": true,
"description": "Monorepo for Pitchside AI (dynamic World Cup speculation network), ScanGuard (MCP security scanner), and ShieldSwap (security-first DEX aggregator) — X Layer X Cup Hackathon",
"workspaces": [
"packages/scanguard",
"packages/shieldswap",
"packages/dashboard",
"packages/agent",
"contracts"
],
"scripts": {
"dev:scanguard": "npm run dev -w packages/scanguard",
"dev:shieldswap": "npm run dev -w packages/shieldswap",
"dev:dashboard": "npm run dev -w packages/dashboard",
"dev:scout": "npm start -w packages/agent",
"build:scanguard": "npm run build -w packages/scanguard",
"build:shieldswap": "npm run build -w packages/shieldswap",
"build:dashboard": "npm run build -w packages/dashboard",
"dev": "concurrently \"npm run dev:scanguard\" \"npm run dev:shieldswap\" \"npm run dev:dashboard\" \"npm run dev:scout\"",
"build": "npm run build:scanguard && npm run build:shieldswap && npm run build:dashboard",
"agent": "tsx packages/scanguard/src/agent-cron.ts",
"check-env": "node -e \"const fs=require('fs'); const e=fs.readFileSync('.env','utf8'); ['OKX_API_KEY','OKX_SECRET_KEY','OKX_PASSPHRASE','AGENT_PRIVATE_KEY'].forEach(k=>console.log(k+': '+(e.includes(k+'=')?'✅':'❌')))\""
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.4",
"concurrently": "^9.1.2",
"typescript": "^5.7.3",
"vite": "^6.2.4"
},
"engines": {
"node": ">=20.0.0"
},
"license": "MIT"
}