forked from sadan4/VencordCompanion
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
160 lines (160 loc) · 5 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
{
"name": "equicord-companion",
"displayName": "Equicord Companion",
"version": "2025.2.5",
"description": "Equicord Companion is a vscode extension to test Equicord patches & webpack finds right from the comfort of your IDE",
"categories": [
"Other",
"Snippets",
"Testing"
],
"keywords": [
"Discord",
"Equicord",
"Modding",
"Typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/Equicord/Companion"
},
"license": "GPL-3.0",
"author": "Thororen <78185467+thororen1234@users.noreply.github.com>",
"contributors": [
{
"name": "Vendicated",
"url": "https://vendicated.dev/"
},
{
"name": "sadan",
"url": "https://sadan.zip"
}
],
"publisher": "thororen",
"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": {
"configuration": {
"title": "Equicord Companion",
"properties": {
"equicord-companion.showSidebar": {
"default": false,
"description": "Show the sidebar. This is intened to be used by workspaces in their .vscode/settings.json file, use alwaysShowSidebar instead to override this setting",
"type": "boolean"
},
"equicord-companion.alwaysShowSidebar": {
"default": false,
"description": "Always show the sidebar",
"type": "boolean"
}
}
},
"viewsContainers": {
"activitybar": [
{
"id": "equicord-companion-panel",
"title": "Companion",
"icon": "assets/icon.svg"
}
]
},
"views": {
"equicord-companion-panel": [
{
"id": "equicordSettings",
"name": "Settings",
"when": "config.equicord-companion.showSidebar || config.equicord-companion.alwaysShowSidebar",
"visibility": "visible"
}
]
},
"commands": [
{
"command": "equicord-companion.runReporter",
"title": "Run Reporter"
},
{
"command": "equicord-companion.diffModuleSearch",
"title": "Diff Module Search"
},
{
"command": "equicord-companion.diffModule",
"title": "Diff Module"
},
{
"command": "equicord-companion.extract",
"title": "Extract"
},
{
"command": "equicord-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": {
"@intrnl/xxhash64": "^0.1.2",
"fast-diff": "^1.3.0",
"nanoid": "^5.0.9",
"prettier": "^3.4.2",
"tsutils": "^3.21.0",
"typescript": "^5.7.3",
"ws": "^8.18.0"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^3.0.1",
"@types/node": "~22.13.1",
"@types/vscode": "^1.96.0",
"@types/ws": "^8.5.14",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"@vscode/vsce": "^3.2.2",
"esbuild": "^0.24.2",
"eslint": "^9.19.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"typescript-eslint": "^8.23.0"
},
"engines": {
"vscode": "^1.96.0"
},
"icon": "assets/icon.png",
"galleryBanner": {
"color": "#4b4b4b",
"theme": "dark"
},
"extensionKind": [
"ui"
],
"sponsor": {
"url": "https://github.com/sponsors/verticalsync"
},
"homepage": "https://github.com/Equicord/Companion",
"packageManager": "pnpm@9.1.4+sha512.9df9cf27c91715646c7d675d1c9c8e41f6fce88246f1318c1aa6a1ed1aeb3c4f032fcdf4ba63cc69c4fe6d634279176b5358727d8f2cc1e65b65f43ce2f8bfb0"
}