-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.14 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
{
"name": "corpos",
"version": "0.2.0",
"private": true,
"description": "CorpOS — reference implementation of an autonomous company",
"author": "SafetyMP",
"license": "Apache-2.0",
"homepage": "https://github.com/SafetyMP/CorpOS#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/SafetyMP/CorpOS.git"
},
"bugs": {
"url": "https://github.com/SafetyMP/CorpOS/issues"
},
"type": "module",
"workspaces": [
"packages/*",
"apps/*"
],
"engines": {
"node": ">=22"
},
"packageManager": "npm@11.17.0",
"scripts": {
"build": "npm run build -w @corpos/core && npm run build -w @corpos/mcp-knowledge && npm run build -w @corpos/api && npm run build -w @corpos/console",
"typecheck": "npm run typecheck -w @corpos/core && npm run typecheck -w @corpos/mcp-knowledge && npm run typecheck -w @corpos/api && npm run typecheck -w @corpos/console",
"dev": "npm run dev -w @corpos/api",
"start": "npm run start -w @corpos/api",
"scenario": "npm run scenario -w @corpos/api",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"audit:verify": "tsx scripts/audit-verify.ts",
"screenshots": "node scripts/capture-screenshots.mjs",
"screenshots:rebuild-gif": "node scripts/capture-screenshots.mjs --from-existing"
},
"dependencies": {
"@corpos/core": "0.2.0",
"@hono/node-server": "2.0.11",
"drizzle-orm": "^0.45.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.1.1",
"eslint": "^10.6.0",
"eslint-config-prettier": "^10.1.8",
"gifenc": "^1.0.3",
"globals": "^17.7.0",
"playwright": "^1.52.0",
"pngjs": "^7.0.0",
"prettier": "^3.9.3",
"tsx": "^4.23.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.62.0",
"vitest": "^4.1.10"
},
"allowScripts": {
"esbuild@0.25.12": true,
"esbuild@0.28.1": true,
"fsevents@2.3.3": true,
"fsevents@2.3.2": true
},
"overrides": {
"@hono/node-server": "2.0.11",
"@modelcontextprotocol/sdk": {
"@hono/node-server": "2.0.11"
}
}
}