forked from sadfun/wirebot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.96 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
{
"name": "wirebot",
"version": "0.2.0",
"private": true,
"type": "module",
"description": "Wirebot — a Telegram, Slack, and Discord bridge for the OpenAI Codex app-server.",
"license": "FSL-1.1-MIT",
"homepage": "https://github.com/sadfun/wirebot#readme",
"bugs": {
"url": "https://github.com/sadfun/wirebot/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sadfun/wirebot.git"
},
"engines": {
"bun": ">=1.3.0"
},
"scripts": {
"build": "bun scripts/build-assets.ts && tailwindcss -i ./src/miniapp/styles.css -o ./dist/miniapp/public/app.css --minify",
"compile": "bun run build && bun build --compile --minify --bytecode --sourcemap --define WIREBOT_COMPILED=true src/cli/main.ts --outfile dist/wirebot",
"check": "tsc -p tsconfig.json && biome check .",
"dev": "bun run build && bun --watch src/cli/main.ts start",
"start": "bun src/cli/main.ts start",
"protocol:generate-bindings": "bun src/cli/main.ts codex check --apply --version $(cat codex.version)",
"codex:check": "bun src/cli/main.ts codex check",
"codex:update": "bun src/cli/main.ts codex check --apply"
},
"dependencies": {
"@grammyjs/runner": "^2.0.3",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-switch": "^1.2.6",
"@slack/socket-mode": "^3.0.0",
"@slack/web-api": "^8.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"discord.js": "^14.27.0",
"grammy": "^1.45.1",
"lucide-react": "^0.468.0",
"marked": "^18.0.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.3.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@biomejs/biome": "^2.5.4",
"@tailwindcss/cli": "^4.1.11",
"@types/node": "^24.13.3",
"@types/node-fetch": "2.6.2",
"@types/react": "^18.3.24",
"@types/react-dom": "^18.3.7",
"tailwindcss": "^4.1.11",
"typescript": "7.0.2"
}
}