-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
122 lines (122 loc) · 3.26 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
{
"name": "methodscriptvsc",
"displayName": "MethodScriptVSC",
"description": "The official Visual Studio Code extension for MethodScript support.",
"version": "1.3.1",
"license": "MIT",
"publisher": "MethodScriptVSC",
"repository": {
"type": "git",
"url": "https://github.com/LadyCailin/MethodScriptVSC"
},
"engines": {
"vscode": "^1.46.0"
},
"categories": [
"Programming Languages",
"Linters",
"Debuggers"
],
"keywords": [
"MethodScript",
"CommandHelper",
"Minecraft",
"mscript"
],
"galleryBanner": {
"color": "#C80000",
"theme": "dark"
},
"icon": "CommandHelper_Icon.png",
"preview": false,
"activationEvents": [
"onCommand:extension.msprofile",
"onLanguage:mscript"
],
"main": "./dist/MethodScriptVSC.js",
"extensionKind": [
"workspace"
],
"contributes": {
"configuration": {
"title": "MethodScript",
"properties": {
"methodscript.langserv.debugModeEnabled": {
"type": "boolean",
"default": false,
"description": "If true, when the language server is started, it is started in debug mode, and awaits a connection from a Java Debugger. This setting is only meant for developers of the Language Server, and not for normal users. (Restart/reload Visual Studio Code for the setting to take effect.)"
},
"methodscript.langserv.debugPort": {
"type": "number",
"default": 9001,
"description": "If debug mode in enabled, the port to start on."
}
}
},
"commands": [
{
"command": "extension.globalmsprofile",
"title": "Choose Global MethodScript Profile",
"icon": "commandhelper_icon.ico"
},
{
"command": "extension.workspacemsprofile",
"title": "Choose Workspace MethodScript Profile",
"icon": "commandhelper_icon.ico"
}
],
"languages": [
{
"id": "mscript",
"extensions": [
".ms",
".msa",
".mslp"
],
"aliases": [
"MethodScript"
],
"firstLine": "#!/usr/bin/env /usr/local/bin/mscript",
"configuration": "./language-configuration.json",
"icon": {
"light": "./icons/images/ms.png",
"dark": "./icons/images/ms.png"
}
}
],
"grammars": [
{
"language": "mscript",
"scopeName": "source.mscript",
"path": "./syntaxes/mscript.tmLanguage.json"
}
]
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "npm run compile && node ./node_modules/vscode/bin/test",
"test-compile": "tsc -p ./"
},
"dependencies": {
"@types/glob": "^7.1.2",
"minimist": "^1.2.5",
"vscode-languageclient": "^6.1.3",
"vscode-languageserver": "^6.1.1",
"watch": "^0.13.0"
},
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.13",
"@types/vscode": "^1.46.0",
"ts-loader": "^7.0.5",
"tslint": "^6.1.2",
"typescript": "^3.9.5",
"vscode-test": "^1.4.0",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2"
}
}