forked from RoundTable02/remote-opencode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.81 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.81 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
{
"name": "remote-opencode",
"version": "1.2.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",
"build:sea": "node scripts/build-sea.js",
"lint": "eslint .",
"type-check": "tsc --noEmit",
"format:check": "prettier --check \"**/*.{ts,json,md}\"",
"start": "node --no-deprecation --no-warnings dist/src/cli.js start",
"dev": "node --no-warnings --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": "^1.0.0",
"commander": "^14.0.3",
"discord.js": "^14.25.1",
"eventsource": "^4.1.0",
"open": "^11.0.0",
"picocolors": "^1.1.1",
"update-notifier": "^7.3.1"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/eventsource": "^1.1.15",
"@types/node": "^22.13.1",
"@types/update-notifier": "^6.0.8",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"esbuild": "^0.25.0",
"eslint": "^9.39.2",
"prettier": "^3.8.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vitest": "^4.0.18"
},
"overrides": {
"undici": "^6.23.0"
}
}