-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 971 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 971 Bytes
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
{
"name": "arctura-network",
"version": "1.0.0",
"description": "Arctura — High-Frequency Consensus Subnet",
"main": "server.js",
"scripts": {
"start": "node server.js",
"build": "echo 'Static site, no build step needed'",
"test": "node --test",
"test:worker": "node scripts/validate-network-worker.mjs",
"validate:publishing": "node scripts/validate-published-routes.mjs",
"validate:edge": "node scripts/validate-edge-static.mjs",
"validate:work-order": "node scripts/validate-work-order.mjs",
"publish:work-standard": "node scripts/publish-work-standard.mjs",
"publish:agent-guide": "node scripts/publish-agent-field-guide.mjs",
"publish:content": "npm run publish:work-standard && npm run publish:agent-guide",
"audit:live": "node scripts/audit-live-site.mjs"
},
"dependencies": {
"express": "^4.18.2"
},
"engines": {
"node": ">=22.0.0"
},
"devDependencies": {
"wrangler": "4.40.0"
}
}