-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.27 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.27 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
{
"name": "@tbosancheros39/opencode-outpost",
"version": "0.15.1",
"description": "Telegram bot client for OpenCode to run and monitor coding tasks from chat.",
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"opencode-outpost": "dist/cli.js"
},
"exports": {
".": "./dist/index.js",
"./cli": "./dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE.md",
".env.example"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "npm run build && npm start",
"dev:watch": "tsx watch src/index.ts",
"prepublishOnly": "npm run build && npm run lint && npm test",
"lint": "eslint src --ext .ts --max-warnings=0",
"format": "prettier --write \"src/**/*.ts\"",
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tbosancheros39/opencode-outpost.git"
},
"keywords": [
"opencode",
"telegram",
"telegram-bot",
"grammy",
"developer-tools",
"cli"
],
"author": {
"name": "anini39",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/tbosancheros39/opencode-outpost/issues"
},
"homepage": "https://github.com/tbosancheros39/opencode-outpost#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@grammyjs/runner": "^2.0.3",
"@opencode-ai/sdk": "^1.14.20",
"better-sqlite3": "^12.9.0",
"bullmq": "^5.74.1",
"dotenv": "^17.4.1",
"fuse.js": "^7.0.0",
"glob": "^10.5.0",
"grammy": "^1.42.0",
"https-proxy-agent": "^9.0.0",
"ioredis": "^5.10.1",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"socks-proxy-agent": "^10.0.0",
"unified": "^11.0.5"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/mdast": "^4.0.4",
"@types/node": "^25.0.8",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.1",
"@vitest/coverage-v8": "^4.1.4",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.0",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vitest": "^4.1.4"
}
}