-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.62 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.62 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "workbench",
"version": "0.0.1",
"private": true,
"license": "SEE LICENSE IN LICENSE.md",
"workspaces": [
"apps/*",
"packages/*",
"templates",
"tools/*",
"vendor/intx/*",
"workflows/*"
],
"scripts": {
"check": "bun run typecheck && bun run lint && bun run test && bun run check:structural",
"typecheck": "bun run scripts/typecheck.ts",
"lint": "prettier --check --cache . && eslint --cache .",
"format": "prettier --write .",
"hooks:install": "bun run scripts/hooks-install.ts",
"prepare": "bun run hooks:install",
"build": "bun run scripts/run-all.ts build",
"test": "bun test ./scripts/*.test.ts && bun run scripts/run-all.ts test",
"test:e2e": "bun test scripts/e2e --max-concurrency=1",
"dev": "bun run scripts/dev.ts",
"publish-tools": "bun scripts/publish-tools.ts",
"setup": "bun scripts/db-setup.ts",
"setup:memory": "bun run scripts/setup-memory.ts",
"reset": "bun scripts/reset.ts",
"check:structural": "bun run scripts/checks/run.ts",
"build:sidecar-image": "docker build -f apps/sidecar/Dockerfile -t corbits-sidecar:dev .",
"eval": "bun run scripts/evals-run.ts"
},
"devDependencies": {
"@corbits/artifacts": "github:corbitsdev/corbits-artifacts#dc435ba749b4378f19e5de772159c2a57e932938",
"@corbits/artifacts-hub": "workspace:*",
"@corbits/codex-provider": "workspace:*",
"@corbits/evals": "workspace:*",
"@corbits/ollama-adapter": "workspace:*",
"@corbits/xai-provider": "workspace:*",
"@intx/db": "workspace:*",
"@intx/crypto": "workspace:*",
"@intx/log": "workspace:*",
"@corbits/connections": "workspace:*",
"@workbench/templates": "workspace:*",
"@eslint/js": "^10.0.0",
"@intx/mime": "0.3.0",
"@intx/types": "0.3.0",
"@types/bun": "1.3.14",
"@typescript/native-preview": "7.0.0-dev.20260707.2",
"eslint": "^10.8.0",
"jiti": "^2.7.0",
"prettier": "^3.6.2",
"puppeteer-core": "^25.7.0",
"typescript": "6.0.3",
"typescript-eslint": "^8.42.0",
"@corbits/run-scope": "workspace:*",
"@corbits/webhook-triggers": "workspace:*"
},
"engines": {
"bun": ">=1.2.0"
},
"catalog": {
"@modelcontextprotocol/sdk": "^1.30.0",
"arktype": "^2.2.0",
"typescript": "6.0.3",
"@types/bun": "^1.3.9",
"@types/semver": "^7.7.1",
"@tanstack/react-query": "^5.101.4",
"better-auth": "^1.4.18",
"drizzle-orm": "^0.45.2",
"hono": "^4.11.9",
"isomorphic-git": "^1.27.2",
"postgres": "^3.4.8",
"semver": "^7.7.2",
"ssri": "^12.0.0",
"tar": "^7.5.1",
"@types/ssri": "^7.1.5",
"@types/react-dom": "^19.2.2"
},
"trustedDependencies": [
"@corbits/react-ui",
"@corbits/mailbox"
],
"dependencies": {
"arktype": "catalog:"
},
"overrides": {
"arktype": "^2.2.0",
"@intx/agent": "workspace:*",
"@intx/authz": "0.3.0",
"@intx/crypto": "0.3.0",
"@intx/db": "workspace:*",
"@intx/harness": "workspace:*",
"@intx/hub-agent": "workspace:*",
"@intx/hub-api": "workspace:*",
"@intx/hub-common": "0.3.0",
"@intx/hub-sessions": "workspace:*",
"@intx/inference": "workspace:*",
"@intx/inference-catalog": "0.3.0",
"@intx/log": "0.3.0",
"@intx/mail-memory": "workspace:*",
"@intx/mime": "workspace:*",
"@intx/pack-transport": "0.3.0",
"@intx/storage-isogit": "0.3.0",
"@intx/tool-packaging": "0.3.0",
"@intx/types": "workspace:*",
"@intx/workflow": "workspace:*",
"@intx/workflow-deploy": "workspace:*",
"@intx/workflow-host": "workspace:*",
"better-auth": "1.6.29",
"hono": "4.13.3",
"@intx/mailbox": "workspace:*"
}
}