forked from Vencord/Companion
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
118 lines (118 loc) · 3.44 KB
/
package.json
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "vencord-companion",
"displayName": "Vencord Companion",
"version": "0.1.3",
"description": "Vencord Companion is a vscode extension to test Vencord patches & webpack finds right from the comfort of your IDE",
"categories": [
"Other",
"Snippets",
"Testing"
],
"keywords": [
"Discord",
"Vencord",
"Modding",
"Typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/Vencord/Companion"
},
"license": "GPL-3.0",
"author": "Vendicated <[email protected]>",
"contributors": [
{
"name": "sadan",
"url": "https://sadan.zip"
}
],
"publisher": "Vendicated",
"main": "./dist/extension.js",
"scripts": {
"build": "node ./scripts/build.mjs",
"watch": "node ./scripts/watch.mjs",
"lint": "eslint && pnpm typecheck",
"package": "vsce package --no-dependencies",
"vscode:prepublish": "pnpm build && pnpm lint",
"publish": "vsce publish --no-dependencies",
"typecheck": "tsc --noEmit",
"postinstall": "(cd src/webview && pnpm i)"
},
"contributes": {
"commands": [
{
"command": "vencord-companion.runReporter",
"title": "Run Reporter"
},
{
"command": "vencord-companion.diffModuleSearch",
"title": "Diff Module Search"
},
{
"command": "vencord-companion.diffModule",
"title": "Diff Module"
},
{
"command": "vencord-companion.extract",
"title": "Extract"
},
{
"command": "vencord-companion.extractSearch",
"title": "Extract With Search"
}
],
"snippets": [
{
"language": "typescript",
"path": "./snippets/ts.json"
},
{
"language": "typescriptreact",
"path": "./snippets/ts.json"
},
{
"language": "typescriptreact",
"path": "./snippets/tsx.json"
}
]
},
"activationEvents": [
"onLanguage:typescript",
"onLanguage:typescriptreact"
],
"dependencies": {
"prettier": "^3.3.3",
"tsutils": "^3.21.0",
"typescript": "^4.9.5",
"ws": "^8.12.1"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.7.2",
"@types/node": "16.x",
"@types/vscode": "^1.70.0",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"@vscode/vsce": "^2.18.0",
"esbuild": "^0.23.1",
"eslint": "^9.9.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"typescript-eslint": "^8.3.0"
},
"engines": {
"vscode": "^1.70.0"
},
"icon": "icon.png",
"galleryBanner": {
"color": "#ed80a7",
"theme": "dark"
},
"extensionKind": [
"ui"
],
"sponsor": {
"url": "https://github.com/sponsors/Vendicated"
},
"homepage": "https://github.com/Vencord/Companion",
"packageManager": "[email protected]+sha512.9df9cf27c91715646c7d675d1c9c8e41f6fce88246f1318c1aa6a1ed1aeb3c4f032fcdf4ba63cc69c4fe6d634279176b5358727d8f2cc1e65b65f43ce2f8bfb0"
}