-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
69 lines (69 loc) · 1.52 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "lsif-browser",
"description": "Extension to browse LSIF databases",
"author": "Microsoft Corporation",
"publisher": "ms-vscode",
"license": "MIT",
"version": "0.6.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Microsoft/vscode-lsif-extension.git"
},
"bugs": {
"url": "https://github.com/Microsoft/vscode-lsif-extension/issues"
},
"categories": [],
"keywords": [
"multi-root ready"
],
"engines": {
"vscode": "^1.86.0"
},
"activationEvents": [
"onFileSystem:lsif",
"onCommand:lsif.openDatabase"
],
"enabledApiProposals": [
"documentFiltersExclusive"
],
"main": "./client/out/extension",
"contributes": {
"commands": [
{
"command": "lsif.openDatabase",
"title": "Open LSIF Database"
}
],
"configuration": {
"type": "object",
"title": "Index Format configuration",
"properties": {
"lsif.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the language server."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"clean": "tsc -b --clean",
"compile": "tsc -b",
"watch": "tsc -b -w",
"postinstall": "cd client && npm install && cd ../server && npm install && cd .."
},
"devDependencies": {
"@types/node": "^18.14.6",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.56.0",
"typescript": "^4.9.5"
}
}