-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
173 lines (173 loc) · 3.97 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
161
162
163
164
165
166
167
168
169
170
171
172
173
{
"name": "mint",
"license": "MIT",
"displayName": "Mint",
"description": "VS Code Support for Mint a refreshing programming language for the front-end web development",
"version": "0.6.0",
"publisher": "mint-lang",
"repository": {
"url": "https://github.com/mint-lang/mint-vscode"
},
"engines": {
"vscode": "^1.49.0"
},
"activationEvents": [
"onLanguage:mint",
"workspaceContains:**/*.mint",
"onCommand:mint.init"
],
"main": "./out/src/extension",
"dependencies": {
"vscode-languageclient": "^6.1.3"
},
"devDependencies": {
"@types/node": "^14.11.2",
"@types/vscode": "^1.49.0",
"js-yaml": "^3.14.0",
"typescript": "^4.0.3"
},
"scripts": {
"compile": "echo Compiling... && npm run convert && tsc -p ./",
"convert": "js-yaml syntaxes/mint.tmLanguage.yaml > syntaxes/mint.tmLanguage.json",
"postinstall": "tsc -p ./",
"watch": "tsc -watch -p ./",
"vscode:prepublish": "npm run compile"
},
"icon": "images/logo.png",
"categories": [
"Programming Languages"
],
"contributes": {
"configuration": {
"type": "object",
"title": "Mint Language Server",
"properties": {
"mint.languageServer.location": {
"type": "string",
"description": "Provide a custom location for the language server binary"
}
}
},
"languages": [
{
"id": "mint",
"aliases": [
"Mint",
"mint"
],
"extensions": [
".mint"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "mint",
"scopeName": "source.mint",
"path": "./syntaxes/mint.tmLanguage.json"
}
],
"snippets": [
{
"language": "mint",
"path": "./snippets/mint.json"
}
],
"commands": [
{
"command": "mint.build",
"title": "Build production bundle",
"category": "Mint"
},
{
"command": "mint.compile",
"title": "Compile project into single JavaScript file",
"category": "Mint"
},
{
"command": "mint.docs",
"title": "Start documentation server",
"category": "Mint"
},
{
"command": "mint.formatAll",
"title": "Format all files",
"category": "Mint"
},
{
"command": "mint.init",
"title": "Initialize new project",
"category": "Mint"
},
{
"command": "mint.install",
"title": "Install dependencies",
"category": "Mint"
},
{
"command": "mint.loc",
"title": "Count lines of code",
"category": "Mint"
},
{
"command": "mint.start",
"title": "Start development server",
"category": "Mint"
},
{
"command": "mint.test",
"title": "Run tests",
"category": "Mint"
},
{
"command": "mint.version",
"title": "Show current version",
"category": "Mint"
}
],
"menus": {
"commandPalette": [
{
"command": "mint.build",
"when": "mint:isActivated"
},
{
"command": "mint.compile",
"when": "mint:isActivated"
},
{
"command": "mint.docs",
"when": "mint:isActivated"
},
{
"command": "mint.formatAll",
"when": "mint:isActivated"
},
{
"command": "mint.init"
},
{
"command": "mint.install",
"when": "mint:isActivated"
},
{
"command": "mint.loc",
"when": "mint:isActivated"
},
{
"command": "mint.start",
"when": "mint:isActivated"
},
{
"command": "mint.test",
"when": "mint:isActivated"
},
{
"command": "mint.version",
"when": "mint:isActivated"
}
]
}
}
}