-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
44 lines (44 loc) · 1.01 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
{
"name": "@urbit/hoon-language-server",
"description": "LSP bridge for Hoon.",
"version": "0.1.2",
"author": "Tlon Corporation",
"license": "MIT",
"engines": {
"node": "*"
},
"files": [
"bin/**",
"out/**"
],
"repository": {
"type": "git",
"url": "git+https://github.com/urbit/hoon-language-server.git"
},
"bin": {
"hoon-language-server": "bin/index.js"
},
"dependencies": {
"@types/eventsource": "^1.1.5",
"@types/lodash": "^4.14.149",
"@types/node": "^13.1.1",
"@types/yargs": "^15.0.0",
"eventsource": "^1.0.7",
"lodash": "^4.17.21",
"pino": "^7.8.0",
"typescript": "^3.8.3",
"urbit-airlock": "0.0.2",
"vscode-languageserver": "^5.2.1",
"yargs": "^17.3.1"
},
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"watch": "tsc --watch"
},
"bugs": {
"url": "https://github.com/urbit/hoon-language-server/issues"
},
"homepage": "https://github.com/urbit/hoon-language-server#readme",
"main": "index.js"
}