-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.83 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
{
"name": "clue",
"version": "0.0.1",
"engines": {
"node": "*",
"vscode": "^1.75.0"
},
"publisher": "Felix44",
"categories": [
"Programming Languages"
],
"main": "./out/extension",
"contributes": {
"languages": [{
"id": "clue",
"aliases": ["Clue", "clue"],
"extensions": [".clue"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "clue",
"scopeName": "source.clue",
"path": "./syntaxes/clue.json"
}],
"configuration": {
"type": "object",
"title": "Clue Language Server",
"properties": {
"clue.path": {
"type": "string",
"default": "clue",
"title": "Path to Clue executable",
"description": "Path to the Clue executable."
},
"clue.env": {
"type": "object",
"default": {},
"title": "Environment",
"description": "Environment variables to be passed to Clue."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"lint": "eslint ./src --ext ts"
},
"dependencies": {
"vscode-languageclient": "^8.1.0",
"vscode-languageserver": "^8.1.0",
"vscode-languageserver-textdocument": "^1.0.8"
},
"devDependencies": {
"@types/vscode": "^1.75.1",
"@types/node": "16.x",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.36.0",
"typescript": "^4.9.5"
}
}