-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1017 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 1017 Bytes
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
{
"name": "bdcompanion",
"displayName": "BetterDiscord Companion",
"description": "A VS Code extension companion for BetterDiscord development",
"version": "0.0.1",
"publisher": "BetterDiscord",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"type": "module",
"private": true,
"main": "./dist/extension.js",
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"commands": [
{
"command": "bdcompanion.tryFind",
"title": "BD Companion: Try Find"
}
]
},
"scripts": {
"build": "bun run build.ts",
"watch": "bun run build.ts --watch",
"package": "vsce package"
},
"devDependencies": {
"@types/bun": "latest",
"@types/js-beautify": "^1.14.3",
"@types/vscode": "^1.85.0",
"@types/ws": "^8.18.1",
"@vscode/vsce": "^2.22.0"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"js-beautify": "^1.15.4",
"vscode": "^1.1.37",
"ws": "^8.18.3"
}
}