This repository was archived by the owner on Nov 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.4 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.4 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
63
64
65
66
67
68
{
"name": "vscode-mythic",
"publisher": "0tickpulse",
"icon": "assets/mythicIcon_128x128.png",
"version": "1.9.5",
"description": "A Visual Studio Code extension that adds language support for MythicMobs configurations.",
"scripts": {
"test": "node out/tests/test.js",
"build": "tsc -b",
"watch": "tsc -b -w",
"test-compile": "tsc -p ./",
"client:webpack": "webpack --mode development --config webpack.client.config.js --stats-error-details",
"client:webpack-dev": "webpack --mode development --watch --config webpack.client.config.js --stats-error-details",
"server:webpack": "webpack --mode development --config webpack.server.config.js --stats-error-details",
"server:webpack-dev": "webpack --mode development --watch --config webpack.server.config.js --stats-error-details",
"vscode:prepublish": "pnpm run client:webpack && pnpm run server:webpack",
"package": "pnpm vsce package --no-dependencies",
"publish": "pnpm vsce publish --no-dependencies"
},
"activationEvents": [
"onLanguage:yaml"
],
"engines": {
"vscode": "^1.73.0"
},
"categories": [
"Other"
],
"main": "./client/dist/client.js",
"contributes": {
"commands": [
{
"command": "vscode-mythic.restartLSP",
"title": "VSCode Mythic: Restart Mythic Language Server"
},
{
"command": "vscode-mythic.openDocumentation",
"title": "VSCode Mythic: Open MythicMobs Documentation"
},
{
"command": "vscode-mythic.debug.printDependencies",
"title": "VSCode Mythic (Debug): Print Dependencies"
}
]
},
"author": "0tickpulse",
"license": "AGPL-3.0-or-later",
"prettier": {
"printWidth": 150,
"tabWidth": 4,
"trailingComma": "all"
},
"repository": {
"type": "git",
"url": "https://github.com/0tickpulse/vscode-mythic.git"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"eslint": "^8.41.0",
"path-browserify": "^1.0.1",
"threads-plugin": "^1.4.0",
"ts-loader": "^9.4.3",
"typescript": "^4.9.5",
"webpack": "^5.84.1",
"webpack-cli": "^5.1.1"
}
}