-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·45 lines (45 loc) · 1.1 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
{
"name": "pyre-lsp",
"version": "0.0.3",
"publisher": "vthemelis",
"engines": {
"vscode": "^1.15.0"
},
"license": "MIT",
"displayName": "pyre-lsp",
"icon": "./pyre.png",
"repository": "https://github.com/vthemelis/pyre-lsp",
"description": "VSCode extension for Pyre-check",
"keywords": [
"python",
"pyre",
"typechecking"
],
"main": "./out/main",
"activationEvents": [
"workspaceContains:**/.pyre_configuration"
],
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "bun run compile && bun ./node_modules/vscode/bin/test",
"lint": "tslint --force -p .",
"prepublish": "bun run compile",
"publish": "npm version patch && bunx vsce publish"
},
"dependencies": {
"@vscode/python-extension": "^1.0.5",
"vscode-languageclient": "^3.5.0",
"which": "^4.0.0"
},
"devDependencies": {
"@types/mocha": "^2.2.44",
"@types/node": "^8.0.53",
"@types/which": "^3.0.4",
"cson": "^4.1.0",
"tslint": "^5.8.0",
"tslint-microsoft-contrib": "^5.0.1",
"typescript": "^3.7",
"vscode": "^1.1.7"
}
}