-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.23 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.23 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "piworker-os",
"version": "2.0.0",
"aix": {
"stackVersion": "0.369.0",
"stackCodename": "Echo369",
"spec": "AIX/1.0",
"layer": "L5",
"layerName": "satellite-pi",
"authority": "axiomid.app"
},
"type": "module",
"private": true,
"workspaces": [
"core",
"agents",
"sidecar",
"sandbox",
"plugins"
],
"engines": {
"node": ">=22.x"
},
"browser": {
"node:fs": false,
"node:path": false,
"node:crypto": false,
"node:child_process": false,
"node:util": false,
"fs": false,
"path": false,
"crypto": false,
"child_process": false,
"util": false,
"tls": false,
"net": false,
"dns": false,
"@grpc/grpc-js": false,
"@grpc/proto-loader": false
},
"scripts": {
"dev:stack": "node scripts/dev-stack.mjs",
"build:sovereign": "./scripts/sovereign-build.sh",
"build:cli": "go build -o bin/piworker-cli cmd/piworker/main.go",
"forge": "go run dev.go",
"typecheck": "tsc --noEmit",
"profile:slo": "node scripts/profile-slo.mjs",
"contracts:check": "node scripts/verify-contract-sync.mjs",
"test:tier1": "node scripts/preflight-check.mjs",
"test:tier2": "node scripts/run-node-unit-tests.mjs",
"test:tier3": "node scripts/bridge-handshake.mjs",
"test:tier4": "node scripts/run-real-e2e.mjs",
"test:e2e:real": "node scripts/run-real-e2e.mjs",
"test:e2e:baseline": "node scripts/aggregate-e2e-baseline.mjs",
"playwright:install:chromium": "playwright install chromium || echo 'playwright not installed; skipping' && exit 0",
"prepare": "husky",
"test:e2e:real": "node scripts/run-e2e-real.mjs"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@grpc/grpc-js": "^1.14.3",
"@grpc/proto-loader": "^0.8.0",
"axios": "^1.16.1",
"ts-node": "^10.9.2",
"typescript": "^5.0.0",
"@upstash/redis": "^1.34.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@secretlint/secretlint-rule-preset-recommend": "^12.2.0",
"@types/node": "^25",
"husky": "^9.1.7",
"lint-staged": "^17.0.5",
"prettier": "^3.8.3",
"secretlint": "^13.0.2",
"dotenv": "^17.4.2"
},
"lint-staged": {
"*.{js,ts,tsx,md,json}": [
"prettier --write"
]
}
}