-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.34 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.34 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
{
"name": "ouroboros-monorepo",
"version": "0.1.2",
"author": "SecondOrder AI",
"private": true,
"description": "Ouroboros — recursive self-improving AI agent (monorepo)",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "cd packages/cli && bun run dev",
"build": "bun run --filter @ouroboros/cli build",
"test": "bun run --filter @ouroboros/cli test",
"test:cli": "bun run --filter @ouroboros/cli test",
"test:cli:live": "bun run --filter @ouroboros/cli test:live",
"test:desktop": "bun run --filter @ouroboros/desktop build:vite && bun run --filter @ouroboros/desktop test:e2e",
"test:intent:e2e": "bun run --filter @ouroboros/desktop test:intent:e2e",
"test:all": "bun run test:cli && bun run test:desktop",
"lint": "bun run --filter '*' lint",
"ts-check": "bun run --filter '*' ts-check",
"verify": "bun scripts/verify.ts",
"prepare": "husky || true"
},
"devDependencies": {
"husky": "^9.1.7"
},
"overrides": {
"@xmldom/xmldom": "0.8.13",
"electron-builder-squirrel-windows": "26.8.1",
"postcss": "^8.5.13",
"brace-expansion": "^5.0.6",
"express-rate-limit": "8.5.1",
"ip-address": "10.2.0",
"tar": "^7.5.13",
"react": "19.2.5",
"react-dom": "19.2.5",
"fast-uri": "^3.1.2",
"hono": "^4.12.18",
"qs": "^6.15.2",
"ws": "^8.20.1"
}
}