-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
83 lines (83 loc) · 2.37 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
{
"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 <vendicated+npm@riseup.net>",
"publisher": "Vendicated",
"main": "./dist/extension.js",
"scripts": {
"compile": "esbuild ./src/extension.ts --platform=node --external:vscode --bundle --sourcemap --log-level=info --outfile=./dist/extension.js",
"lint": "eslint src --ext ts && pnpm typecheck",
"package": "vsce package --no-dependencies",
"vscode:prepublish": "pnpm compile --minify && pnpm lint",
"publish": "vsce publish --no-dependencies",
"watch": "pnpm compile --watch",
"typecheck": "tsc --noEmit"
},
"contributes": {
"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": {
"typescript": "^4.9.5",
"ws": "^8.12.1"
},
"devDependencies": {
"@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.17.19",
"eslint": "^8.34.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"
}