-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 841 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 841 Bytes
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
{
"name": "@donaldpipowitch/vscode-extension-server",
"description": "A .vscode/extensions.json language server.",
"author": "Donald Pipowitch",
"license": "MIT",
"version": "1.0.0",
"main": "dist",
"typings": "dist",
"repository": {
"type": "git",
"url": "https://github.com/donaldpipowitch/how-to-create-a-language-server-and-vscode-extension"
},
"scripts": {
"prepublish": "yarn build",
"build": "tsc -b src",
"watch": "tsc -b src -w",
"unit": "jest -c tests/jest.config.js"
},
"dependencies": {
"@donaldpipowitch/vscode-extension-core": "^1.0.0",
"jsonc-parser": "^2.0.2",
"vscode-languageserver": "^5.1.0"
},
"devDependencies": {
"@types/jest": "^23.3.8",
"@types/node": "^8.0.0",
"jest": "^23.6.0",
"ts-jest": "^23.10.4",
"typescript": "^3.1.3"
}
}