-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.67 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
{
"name": "code-sflk",
"displayName": "code.sflk",
"description": "language support for sflk",
"main": "build/index.js",
"activationEvents": [
"onLanguage:sflk",
"workspaceContains:*.sflk"
],
"version": "0.0.1",
"scripts": {
"build": "tsc",
"watch": "tsc --watch"
},
"engines": {
"vscode": "^1.52.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "sflk",
"aliases": [
"sflk",
"sflk"
],
"extensions": [
"sflk",
"Sflk",
"SFLK"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "sflk",
"scopeName": "sflk",
"path": "./syntaxes/sflk.tmLanguage.json"
}
]
},
"configuration": {
"title": "Settings for sflk",
"properties": {
"sflk.serverPath": {
"type": "string",
"default": "sflk-lsp",
"description": "Path to the LSP executable"
}
}
},
"devDependencies": {
"@types/node": "^14.14.8",
"@types/vscode": "^1.51.0",
"husky": "^4.3.0",
"prettier": "^2.1.2",
"typescript": "^4.0.5"
},
"husky": {
"hooks": {
"pre-commit": "prettier --write server/**/*.ts"
}
},
"dependencies": {
"vscode-languageclient": "^6.1.3"
}
}