-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.51 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.51 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
{
"name": "@chrisromp/copilot-bridge",
"version": "0.13.0",
"description": "Mattermost ↔ GitHub Copilot bridge",
"type": "module",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ChrisRomp/copilot-bridge.git"
},
"bin": {
"copilot-bridge": "bin/copilot-bridge.js"
},
"files": [
"bin/",
"dist/",
"scripts/*.ts",
"scripts/lib/*.ts",
"!scripts/**/*.test.ts",
"!scripts/test-admin-api.ts",
"scripts/com.copilot-bridge.plist",
"scripts/copilot-bridge.service",
"templates/",
"config.sample.json"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"prepublishOnly": "npm run build",
"start": "tsx dist/index.js",
"init": "tsx scripts/init.ts",
"check": "tsx scripts/check.ts",
"install-service": "tsx scripts/install-service.ts",
"uninstall-service": "tsx scripts/uninstall-service.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@github/copilot-sdk": "^0.2.2",
"@mattermost/client": "^11.5.0",
"@mattermost/types": "^11.5.0",
"@slack/bolt": "^4.7.0",
"better-sqlite3": "^12.6.2",
"cron": "^4.4.0",
"cronstrue": "^3.14.0",
"luxon": "^3.7.2",
"tsx": "^4.21.0",
"ws": "^8.20.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/ws": "^8.5.14",
"typescript": "^5.9.3",
"vitest": "^4.1.4"
}
}