forked from keesschollaart81/vscode-home-assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.59 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.59 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
{
"name": "home-assistant-ls",
"version": "0.0.2-beta",
"description": "Language Server for Home Assistant configuration files",
"main": "dist/server.js",
"bin": {
"home-assistant-language-server": "bin/home-assistant-ls"
},
"files": [
"dist/**/*",
"bin/**/*",
"README.md"
],
"scripts": {
"build": "tsc && mkdir -p dist/language-service/schemas/json && cp src/language-service/schemas/mappings.json dist/language-service/schemas/ && node dist/language-service/schemas/generateSchemas.js",
"watch": "tsc --watch",
"prepublishOnly": "npm run build"
},
"keywords": [
"home-assistant",
"language-server",
"lsp",
"yaml",
"nvim",
"neovim",
"vim"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": ""
},
"dependencies": {
"axios": "^1.10.0",
"home-assistant-js-websocket": "^9.5.0",
"uuid": "^11.1.0",
"vscode-json-languageservice": "^5.6.1",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-protocol": "3.17.5",
"vscode-languageserver-textdocument": "^1.0.12",
"vscode-uri": "3.1.0",
"ws": "8.18.3",
"yaml": "2.8.0",
"yaml-language-server": "1.18.0"
},
"devDependencies": {
"@types/node": "24.0.12",
"@types/uuid": "^10.0.0",
"@types/ws": "8.18.1",
"typescript": "^5.8.3",
"typescript-json-schema": "0.65.1"
},
"engines": {
"node": ">=18.0.0"
}
}