-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.91 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.91 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
{
"name": "everythingos",
"version": "1.0.0",
"description": "LLM-Agnostic Multi-Agent Operating System — Robots For Peace",
"main": "dist/index.js",
"type": "module",
"bin": {
"everythingos": "cli/bin.js",
"eos": "cli/bin.js"
},
"engines": {
"node": ">=20.20.0",
"npm": ">=10.0.0"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"api": "node dist/api/server.js",
"dev": "tsx watch src/index.ts",
"e2e:proof": "tsx examples/e2e-proof.ts",
"test": "node -e \"['./everythingos-audit.jsonl','./agent-revocations.jsonl','./everythingos-decisions.jsonl'].forEach(f=>{try{require('fs').unlinkSync(f)}catch{}})\" && jest",
"test:security": "jest tests/security/ --verbose --forceExit",
"audit:check": "npm audit --audit-level=high",
"audit:fix": "npm audit fix",
"lint": "eslint src/ --ext .ts",
"typecheck": "tsc --noEmit",
"check:stride": "node scripts/check-stride-claims.mjs",
"sbom": "cyclonedx-npm --output-format json --output-file sbom.json",
"compliance": "curl -s http://localhost:3000/api/compliance/status | jq ."
},
"dependencies": {
"axios": "^1.11.0",
"dotenv": "^16.4.5",
"express": "^4.20.0",
"re2": "^1.24.1",
"uuid": "^10.0.0",
"ws": "^8.17.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@cyclonedx/cyclonedx-npm": "^4.1.2",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.19.33",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.5.12",
"eslint": "^9.7.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.4",
"tsx": "^4.16.2",
"typescript": "^5.5.4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"setupFiles": [
"<rootDir>/tests/jest.setup.ts"
],
"testMatch": [
"**/tests/**/*.test.ts"
],
"globals": {
"ts-jest": {
"tsconfig": "./tsconfig.test.json"
}
}
}
}