This repository was archived by the owner on Feb 20, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
188 lines (188 loc) · 7.78 KB
/
package.json
File metadata and controls
188 lines (188 loc) · 7.78 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
{
"name": "@razroo/razroom",
"version": "2026.2.17",
"description": "Multi-channel AI gateway with extensible messaging integrations",
"keywords": [],
"license": "MIT",
"author": "",
"bin": {
"razroom": "razroom.mjs"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"razroom.mjs",
"README-header.png",
"README.md",
"assets/",
"dist/",
"docs/",
"extensions/",
"skills/"
],
"type": "module",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./plugin-sdk": {
"types": "./dist/plugin-sdk/index.d.ts",
"default": "./dist/plugin-sdk/index.js"
},
"./plugin-sdk/account-id": {
"types": "./dist/plugin-sdk/account-id.d.ts",
"default": "./dist/plugin-sdk/account-id.js"
},
"./cli-entry": "./razroom.mjs"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "bun run canvas:a2ui:bundle && bun scripts/build.ts && bun run build:plugin-sdk:dts && bun scripts/write-plugin-sdk-entry-dts.ts && bun scripts/canvas-a2ui-copy.ts && bun scripts/copy-hook-metadata.ts && bun scripts/write-build-info.ts && bun scripts/write-cli-compat.ts",
"build:plugin-sdk:dts": "tsc -p tsconfig.plugin-sdk.dts.json",
"canvas:a2ui:bundle": "bash scripts/bundle-a2ui.sh",
"check": "bun run format:check && bun run tsgo && bun run lint",
"check:docs": "bun run format:docs:check && bun run lint:docs && bun run docs:check-links",
"check:loc": "bun scripts/check-ts-max-loc.ts --max 500",
"dev": "bun scripts/run-bun.mjs",
"docs:bin": "bun scripts/build-docs-list.mjs",
"docs:check-links": "bun scripts/docs-link-audit.mjs",
"docs:dev": "cd docs && mint dev",
"docs:list": "bun scripts/docs-list.js",
"format": "oxfmt --write",
"format:all": "bun run format",
"format:check": "oxfmt --check",
"format:docs": "git ls-files 'docs/**/*.md' 'docs/**/*.mdx' 'README.md' | xargs oxfmt --write",
"format:docs:check": "git ls-files 'docs/**/*.md' 'docs/**/*.mdx' 'README.md' | xargs oxfmt --check",
"gateway:dev": "RAZROOM_SKIP_CHANNELS=1 RAZROOM_SKIP_CHANNELS=1 bun scripts/run-bun.mjs --dev gateway",
"gateway:dev:reset": "RAZROOM_SKIP_CHANNELS=1 RAZROOM_SKIP_CHANNELS=1 bun scripts/run-bun.mjs --dev gateway --reset",
"gateway:watch": "bun scripts/watch-bun.mjs gateway --force",
"lint": "oxlint --type-aware",
"lint:all": "bun run lint",
"lint:docs": "bunx markdownlint-cli2",
"lint:docs:fix": "bunx markdownlint-cli2 --fix",
"lint:fix": "oxlint --type-aware --fix && bun run format",
"plugins:sync": "bun scripts/sync-plugin-versions.ts",
"prepack": "bun run build && bun run ui:build",
"prepare": "command -v git >/dev/null 2>&1 && git rev-parse --is-inside-work-tree >/dev/null 2>&1 && git config core.hooksPath git-hooks || exit 0",
"protocol:check": "bun run protocol:gen && git diff --exit-code -- dist/protocol.schema.json",
"protocol:gen": "bun scripts/protocol-gen.ts",
"razroom": "bun scripts/run-bun.mjs",
"razroom:rpc": "bun scripts/run-bun.mjs agent --mode rpc --json",
"release:check": "bun scripts/release-check.ts",
"start": "bun scripts/run-bun.mjs",
"test": "bun scripts/test-parallel.mjs",
"test:all": "bun run lint && bun run build && bun run test && bun run test:e2e && bun run test:live && bun run test:docker:all",
"test:coverage": "bun test --config vitest.unit.config.ts --coverage",
"test:docker:all": "bun run test:docker:live-models && bun run test:docker:live-gateway && bun run test:docker:onboard && bun run test:docker:gateway-network && bun run test:docker:qr && bun run test:docker:doctor-switch && bun run test:docker:plugins && bun run test:docker:cleanup",
"test:docker:cleanup": "bash scripts/test-cleanup-docker.sh",
"test:docker:doctor-switch": "bash scripts/e2e/doctor-install-switch-docker.sh",
"test:docker:gateway-network": "bash scripts/e2e/gateway-network-docker.sh",
"test:docker:live-gateway": "bash scripts/test-live-gateway-models-docker.sh",
"test:docker:live-models": "bash scripts/test-live-models-docker.sh",
"test:docker:onboard": "bash scripts/e2e/onboard-docker.sh",
"test:docker:plugins": "bash scripts/e2e/plugins-docker.sh",
"test:docker:qr": "bash scripts/e2e/qr-import-docker.sh",
"test:e2e": "bun test --config vitest.e2e.config.ts",
"test:fast": "bun test --config vitest.unit.config.ts",
"test:force": "bun scripts/test-force.ts",
"test:install:e2e": "bash scripts/test-install-sh-e2e-docker.sh",
"test:install:e2e:anthropic": "RAZROOM_E2E_MODELS=anthropic RAZROOM_E2E_MODELS=anthropic bash scripts/test-install-sh-e2e-docker.sh",
"test:install:e2e:openai": "RAZROOM_E2E_MODELS=openai RAZROOM_E2E_MODELS=openai bash scripts/test-install-sh-e2e-docker.sh",
"test:install:smoke": "bash scripts/test-install-sh-docker.sh",
"test:live": "RAZROOM_LIVE_TEST=1 RAZROOM_LIVE_TEST=1 bun test --config vitest.live.config.ts",
"test:macmini": "RAZROOM_TEST_VM_FORKS=0 RAZROOM_TEST_PROFILE=serial bun scripts/test-parallel.mjs",
"test:ui": "bun --cwd ui test",
"test:watch": "bun test --watch",
"tsgo:test": "tsgo -p tsconfig.test.json",
"tui": "bun scripts/run-bun.mjs tui",
"tui:dev": "RAZROOM_PROFILE=dev RAZROOM_PROFILE=dev bun scripts/run-bun.mjs --dev tui",
"ui:build": "bun scripts/ui.js build",
"ui:dev": "bun scripts/ui.js dev",
"ui:install": "bun scripts/ui.js install"
},
"dependencies": {
"@agentclientprotocol/sdk": "0.14.1",
"@aws-sdk/client-bedrock": "^3.990.0",
"@buape/carbon": "0.14.0",
"@clack/prompts": "^1.0.1",
"@grammyjs/runner": "^2.0.3",
"@grammyjs/transformer-throttler": "^1.2.1",
"@homebridge/ciao": "^1.3.5",
"@larksuiteoapi/node-sdk": "^1.59.0",
"@line/bot-sdk": "^10.6.0",
"@lydell/node-pty": "1.2.0-beta.3",
"@mariozechner/pi-agent-core": "0.52.12",
"@mariozechner/pi-ai": "0.52.12",
"@mariozechner/pi-coding-agent": "0.52.12",
"@mariozechner/pi-tui": "0.52.12",
"@mozilla/readability": "^0.6.0",
"@sinclair/typebox": "0.34.48",
"@slack/bolt": "^4.6.0",
"@slack/web-api": "^7.14.1",
"@whiskeysockets/baileys": "7.0.0-rc.9",
"ajv": "^8.18.0",
"chalk": "^5.6.2",
"chokidar": "^5.0.0",
"cli-highlight": "^2.1.11",
"commander": "^14.0.3",
"croner": "^10.0.1",
"discord-api-types": "^0.38.39",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"file-type": "^21.3.0",
"grammy": "^1.40.0",
"https-proxy-agent": "^7.0.6",
"jiti": "^2.6.1",
"json5": "^2.2.3",
"jszip": "^3.10.1",
"linkedom": "^0.18.12",
"long": "^5.3.2",
"markdown-it": "^14.1.1",
"node-edge-tts": "^1.2.10",
"osc-progress": "^0.3.0",
"pdfjs-dist": "^5.4.624",
"playwright-core": "1.58.2",
"proper-lockfile": "^4.1.2",
"qrcode-terminal": "^0.12.0",
"sharp": "^0.34.5",
"signal-utils": "^0.21.1",
"sqlite-vec": "0.1.7-alpha.2",
"tar": "7.5.7",
"tslog": "^4.10.2",
"undici": "^7.22.0",
"ws": "^8.19.0",
"yaml": "^2.8.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@grammyjs/types": "^3.24.0",
"@lit-labs/signals": "^0.2.0",
"@lit/context": "^1.1.6",
"@types/express": "^5.0.6",
"@types/markdown-it": "^14.1.2",
"@types/node": "^25.2.3",
"@types/proper-lockfile": "^4.1.4",
"@types/qrcode-terminal": "^0.12.2",
"@types/ws": "^8.18.1",
"@typescript/native-preview": "7.0.0-dev.20260214.1",
"@vitest/coverage-v8": "^4.0.18",
"lit": "^3.3.2",
"ollama": "^0.6.3",
"oxfmt": "0.32.0",
"oxlint": "^1.47.0",
"oxlint-tsgolint": "^0.12.2",
"rolldown": "1.0.0-rc.4",
"tsdown": "^0.20.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"peerDependencies": {
"@napi-rs/canvas": "^0.1.89",
"node-llama-cpp": "3.15.1"
},
"engines": {
"bun": ">=1.0.0"
}
}