-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.09 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
{
"name": "sml-analyzer-client",
"description": "VSCode extension for sml-analyzer",
"author": "Michael Lazear",
"license": "MIT",
"version": "0.0.1",
"publisher": "vscode",
"repository": {
"type": "git",
"url": "https://github.com/lazear/sml-analyzer"
},
"engines": {
"vscode": "^1.43.0"
},
"activationEvents": [
"onLanguage:sml"
],
"main": "./out/extension",
"dependencies": {
"vscode-languageclient": "^6.1.3"
},
"contributes": {
"languages": [
{
"id": "sml",
"extensions": [
".sml",
".fun",
".sig"
],
"aliases": [
"Standard ML",
"sml"
]
}
],
"grammars": [
{
"language": "sml",
"scopeName": "source.sml",
"path": "./syntaxes/sml.tmLanguage.json"
}
]
},
"devDependencies": {
"@types/vscode": "1.43.0",
"vscode-test": "^1.3.0",
"@types/mocha": "^7.0.2",
"mocha": "^8.0.1",
"@types/node": "^12.12.0",
"eslint": "^6.4.0",
"@typescript-eslint/parser": "^2.3.0",
"typescript": "^3.9.4"
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w"
}
}