-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
103 lines (103 loc) · 2.51 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "vscode-opn",
"displayName": "Open File in App",
"description": "Integrates node.js module 'opn' to open files directly by default, or on your local web server using the default app set by the OS, or an app set by you. \n\n Great for rapid prototyping!",
"version": "1.1.2",
"publisher": "lfurzewaddock",
"icon": "public/assets/images/vscode-opn.png",
"galleryBanner": {
"color": "#A88037",
"theme": "dark"
},
"keywords": [
"open",
"launch",
"file",
"program",
"app",
"application",
"default",
"html",
"htm",
"txt",
"json",
"xml",
"log"
],
"bugs": {
"url": "https://github.com/lfurzewaddock/vscode-opn/issues"
},
"homepage": "https://github.com/lfurzewaddock/vscode-opn/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/lfurzewaddock/vscode-opn"
},
"engines": {
"vscode": "^0.10.6"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./lib",
"contributes": {
"commands": [
{
"command": "extension.opn",
"title": "Open"
}
],
"keybindings": [
{
"command": "extension.opn",
"key": "ctrl+alt+o",
"mac": "cmd+alt+o"
}
],
"configuration": {
"type": "object",
"title": "vscode-opn configuration",
"properties": {
"vscode-opn.perLang": {
"type": "object",
"default": {},
"description": "vscode-opn 'opnOptions' array of objects to provide args to the opn command for each language"
},
"vscode-opn.webServerProtocol": {
"type": "string",
"default": "http",
"description": "Enter a protocol, e.g. 'http' or 'https'"
},
"vscode-opn.webServerHostname": {
"type": "string",
"default": "localhost",
"description": "Enter the hostname or IP of your local web server"
},
"vscode-opn.webServerPort": {
"type": "integer",
"default": 8080,
"description": "Enter the port of your local web server"
}
}
}
},
"scripts": {
"publish": "./node_modules/.bin/babel src --out-dir lib"
},
"dependencies": {
"opn": "^4.0.0"
},
"peerDependencies": {
"vscode": "^0.11.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"decache": "^3.0.3",
"eslint": "^5.6.1",
"eslint-config-airbnb-es5": "^1.2.0",
"eslint-plugin-react": "^7.11.1"
},
"license": "See LICENSE.txt"
}