-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.46 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.46 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
{
"name": "remote-opencode",
"version": "1.3.1",
"description": "Discord bot for remote OpenCode CLI access",
"main": "dist/src/index.js",
"bin": {
"remote-opencode": "./dist/src/cli.js"
},
"files": [
"dist",
"README.md"
],
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "tsc",
"start": "node --no-deprecation dist/src/cli.js start",
"dev": "node --loader ts-node/esm src/cli.ts",
"deploy-commands": "npm run build && node dist/src/cli.js deploy",
"test": "vitest",
"prepublishOnly": "npm run build",
"release": "npm version patch && npm run build && npm publish",
"release:minor": "npm version minor && npm run build && npm publish",
"release:major": "npm version major && npm run build && npm publish"
},
"keywords": [
"discord",
"opencode",
"cli",
"remote",
"bot"
],
"author": "",
"license": "MIT",
"type": "module",
"dependencies": {
"@clack/prompts": "^0.9.1",
"@types/eventsource": "^1.1.15",
"commander": "^13.1.0",
"discord.js": "^14.25.1",
"eventsource": "^4.1.0",
"node-pty": "^1.1.0",
"open": "^10.1.0",
"opencode-antigravity-auth": "^1.4.6",
"picocolors": "^1.1.1",
"update-notifier": "^7.3.1"
},
"devDependencies": {
"@types/node": "^25.1.0",
"@types/update-notifier": "^6.0.8",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"overrides": {
"undici": "^6.23.0"
}
}