-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 2.29 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 2.29 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
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
{
"name": "msc",
"displayName": "Minr Scripts",
"description": "Minr Scripts VS Code extension",
"version": "3.0.2",
"icon": "images/minr.png",
"repository": {
"type": "git",
"url": "https://github.com/Lightwood13/msc.git"
},
"publisher": "Lightwood13",
"categories": [
"Programming Languages"
],
"engines": {
"vscode": "^1.67.0"
},
"activationEvents": [
"onCommand:msc.upload",
"onCommand:msc.download",
"onLanguage:msc",
"onLanguage:nms"
],
"main": "./client/out/extension",
"contributes": {
"languages": [
{
"id": "msc",
"aliases": [
"msc"
],
"extensions": [
".msc"
],
"configuration": "./msc-language-configuration.json"
},
{
"id": "nms",
"aliases": [
"nms"
],
"extensions": [
".nms"
],
"configuration": "./nms-language-configuration.json"
}
],
"grammars": [
{
"language": "msc",
"scopeName": "source.msc",
"path": "./syntaxes/msc.tmLanguage.json"
},
{
"language": "nms",
"scopeName": "source.nms",
"path": "./syntaxes/nms.tmLanguage.json"
}
],
"commands": [
{
"command": "msc.upload",
"title": "Upload script"
},
{
"command": "msc.update_nms",
"title": "Update namespace"
},
{
"command": "msc.download",
"title": "Download script"
}
],
"keybindings": [
{
"command": "msc.download",
"key": "alt+d"
},
{
"command": "msc.upload",
"key": "alt+u"
},
{
"command": "msc.update_nms",
"key": "ctrl+alt+u"
}
],
"iconThemes": [
{
"id": "msc",
"label": "Minr scripts",
"path": "./fileicons/vs-seti-plus-msc-icon-theme.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"lint": "eslint ./client/src ./server/src --ext .ts,.tsx",
"postinstall": "cd client && npm install && cd ../server && npm install && cd ..",
"test": "sh ./scripts/e2e.sh"
},
"dependencies": {
"axios": "^0.25.0",
"node-dir": "^0.1.17"
},
"devDependencies": {
"@types/mocha": "^8.2.2",
"@types/node": "16.x",
"@types/node-dir": "^0.0.34",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"@types/vscode": "^1.67.0",
"eslint": "^8.56.0",
"mocha": "^8.3.2",
"typescript": "^5.4.5"
}
}