-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.67 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
{
"name": "corpos",
"version": "0.1.0",
"private": true,
"description": "CorpOS — an autonomous company operating system: a TypeScript multi-agent runtime with a policy, approval, and audit control plane.",
"author": "SafetyMP",
"license": "Apache-2.0",
"type": "module",
"homepage": "https://github.com/SafetyMP/CorpOS",
"repository": {
"type": "git",
"url": "https://github.com/SafetyMP/CorpOS.git"
},
"bugs": {
"url": "https://github.com/SafetyMP/CorpOS/issues"
},
"keywords": [
"multi-agent",
"llm",
"autonomous-agents",
"agent-orchestration",
"policy-engine",
"approval-workflow",
"openrouter",
"ai",
"control-plane",
"typescript"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"dev": "tsx watch src/index.ts",
"start": "tsx src/index.ts",
"scenario": "tsx src/index.ts --scenario",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"better-sqlite3": "^12.11.1",
"express": "^5.2.1",
"nanoid": "^5.0.7",
"ws": "^8.18.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/better-sqlite3": "^7.6.11",
"@types/express": "^5.0.6",
"@types/node": "^26.0.1",
"@types/ws": "^8.5.12",
"eslint": "^10.6.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^15.15.0",
"prettier": "^3.9.3",
"tsx": "^4.19.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.0",
"vitest": "^4.1.9"
}
}