-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.08 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.08 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
{
"name": "@olrtg/emmet-language-server",
"version": "2.8.0",
"description": "A language server for emmet.io",
"scripts": {
"dev": "nodemon --watch index.ts --exec \"nr build && npm link\"",
"build": "tsc",
"prepublishOnly": "nr build",
"publish": "bumpp && npm publish"
},
"author": "José Olórtegui <jolortegui98@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/olrtg/emmet-language-server#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/olrtg/emmet-language-server.git"
},
"bugs": {
"url": "https://github.com/olrtg/emmet-language-server/issues"
},
"dependencies": {
"@emmetio/html-matcher": "^1.3.0",
"@vscode/emmet-helper": "^2.11.0",
"bumpp": "^9.8.1",
"htmlparser2": "^10.0.0",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-textdocument": "^1.0.12"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.8",
"@types/node": "^22.9.1",
"nodemon": "^3.1.7",
"typescript": "^5.6.3"
},
"bin": {
"emmet-language-server": "./dist/index.js"
}
}