-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 1.81 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
{
"name": "ginko",
"description": "Language Support for Device Trees",
"author": "Lukas Scheller",
"publisher": "lscheller",
"license": "MIT",
"version": "0.0.1",
"categories": [
"Programming Languages"
],
"keywords": [
"dts",
"device-tree",
"language-server"
],
"repository": {
"type": "git",
"url": "https://github.com/Schottkyc137/ginko_vscode"
},
"engines": {
"vscode": "^1.75.0"
},
"main": "./dist/extension",
"contributes": {
"languages": [
{
"id": "dts",
"aliases": [
"DeviceTree",
"dts"
],
"extensions": [
".dts",
".dtsi",
".dtso"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "dts",
"scopeName": "source.dts",
"path": "./syntaxes/dts.tmLanguage.json"
}
],
"configuration": [
{
"title": "ginko",
"type": "object",
"properties": {
"ginko.languageServer": {
"description": "Language server location. Changing this option requires a restart.",
"type": "string",
"default": "embedded",
"enum": [
"embedded",
"systemPath"
],
"enumDescriptions": [
"Use language server embedded in extension.",
"Run ginko_ls from system path."
]
}
}
}
]
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"lint": "eslint ./client/src --ext .ts,.tsx",
"postinstall": "cd client && npm install && cd ..",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"esbuild": "^0.20.0",
"eslint": "^8.56.0",
"mocha": "^10.2.0",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.90.1",
"webpack-cli": "^5.1.4"
}
}