-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.69 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.69 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
{
"name": "grphlsp",
"description": "GRPH Language Support",
"author": "Snowy_1803",
"license": "MPL",
"version": "1.0.0",
"publisher": "grph-lang",
"categories": [
"Programming Languages"
],
"keywords": [
"multi-root ready"
],
"engines": {
"vscode": "^1.52.0"
},
"activationEvents": [
"onLanguage:grph"
],
"main": "./out/extension",
"contributes": {
"configuration": [
{
"title": "GRPH",
"properties": {
"grph.languageServerPath": {
"type": "string",
"default": "grph-lsp",
"description": "Location where the GRPH-LSP can be found."
}
}
}
],
"languages": [{
"id": "grph",
"extensions": [".grph"],
"aliases": ["GRPH", "Graphism"],
"firstLine": "#requires GRPH 1.11",
"configuration": "./language-configuration.json"
}],
"semanticTokenTypes": [
{
"id": "command",
"superType": "keyword",
"description": "A GRPH #command"
}
],
"semanticTokenScopes": [
{
"language": "grph",
"scopes": {
"command": ["keyword.command"]
}
}
],
"configurationDefaults": {
"[grph]": {
"editor.detectIndentation": false,
"editor.insertSpaces": false,
"files.insertFinalNewline": true
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"lint": "eslint ./src --ext .ts,.tsx"
},
"dependencies": {
"vscode-languageclient": "^7.0.0"
},
"devDependencies": {
"@types/node": "^12.12.0",
"@types/vscode": "^1.52.0",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"@vscode/test-electron": "^1.6.1",
"eslint": "^7.26.0",
"typescript": "^4.3.5",
"vsce": "^1.81.1"
}
}