-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.18 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.18 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "hover",
"displayName": "Hover",
"description": "EXPERIMENTAL | Hover integration for VS Code",
"version": "0.1.0",
"publisher": "go-flutter",
"author": {
"name": "Geert-Johan Riemer"
},
"license": "BSD",
"icon": "images/hover-logo.png",
"galleryBanner": {
"color": "#F2F2F2",
"theme": "light"
},
"engines": {
"vscode": "^1.34.0"
},
"categories": [
"Debuggers"
],
"activationEvents": [
"onCommand:hover.run"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "hover.run",
"title": "Hover: Run",
"description": "Run application in debug mode with hot-reload."
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/go-flutter-desktop/vscode-hover.git"
},
"keywords": [],
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "tslint -p ./",
"watch": "tsc -watch -p ./"
},
"extensionDependencies": [
"dart-code.flutter"
],
"dependencies": {
"js-yaml": "^3.13.1",
"tree-kill": "^1.2.2"
},
"devDependencies": {
"@types/js-yaml": "^3.12.3",
"@types/node": "^12.12.0",
"@types/vscode": "^1.34.0",
"tslint": "^5.19.0",
"typescript": "^3.8.3"
}
}