forked from IvanArjona/cloudflare-tunnel-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
137 lines (137 loc) · 4.12 KB
/
Copy pathpackage.json
File metadata and controls
137 lines (137 loc) · 4.12 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
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "cloudflaretunnel",
"displayName": "Cloudflare Tunnel",
"description": "A VSCode extension to create a local tunnel through Cloudflare",
"version": "0.3.3",
"engines": {
"vscode": "^1.62.0"
},
"author": {
"name": "Iván Arjona",
"url": "https://iarjona.com"
},
"publisher": "IvanArjona",
"homepage": "https://github.com/IvanArjona/cloudflare-tunnel-vscode",
"bugs": {
"url": "https://github.com/IvanArjona/cloudflare-tunnel-vscode/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/IvanArjona/cloudflare-tunnel-vscode.git"
},
"galleryBanner": {
"color": "#F48120",
"theme": "dark"
},
"icon": "images/icon.png",
"license": "MIT",
"categories": [
"Other"
],
"keywords": [
"cloudflare",
"tunnel",
"ngrok",
"remote",
"http"
],
"activationEvents": [
"onStartupFinished",
"onCommand:cloudflaretunnel.version",
"onCommand:cloudflaretunnel.start",
"onCommand:cloudflaretunnel.stop",
"onCommand:cloudflaretunnel.isRunning",
"onCommand:cloudflaretunnel.getUrl",
"onCommand:cloudflaretunnel.login",
"onCommand:cloudflaretunnel.logout"
],
"extensionDependencies": [
"mindaro-dev.file-downloader"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "cloudflaretunnel.version",
"title": "Cloudflare Tunnel: Get version"
},
{
"command": "cloudflaretunnel.start",
"title": "Cloudflare Tunnel: Start"
},
{
"command": "cloudflaretunnel.stop",
"title": "Cloudflare Tunnel: Stop"
},
{
"command": "cloudflaretunnel.isRunning",
"title": "Cloudflare Tunnel: Is running?"
},
{
"command": "cloudflaretunnel.getUrl",
"title": "Cloudflare Tunnel: Get url"
},
{
"command": "cloudflaretunnel.login",
"title": "Cloudflare Tunnel: Login"
},
{
"command": "cloudflaretunnel.logout",
"title": "Cloudflare Tunnel: Logout"
}
],
"configuration": {
"title": "Cloudflare Tunnel",
"properties": {
"cloudflaretunnel.tunnel.defaultPort": {
"type": "number",
"default": "8080",
"markdownDescription": "Default port number to expose in your local environment. Example: `8000`"
},
"cloudflaretunnel.tunnel.askForPort": {
"type": "boolean",
"default": true,
"description": "Ask for port every time you start the tunnel, even if default port is set."
},
"cloudflaretunnel.tunnel.hostname": {
"type": "string",
"markdownDescription": "Your domain hostname. If not specified anything, it will generate a `.trycloudflare.com` subdomain. Make sure to login and give proper permissions before changing this setting. Example: `mytunnel.mydomain.com`"
},
"cloudflaretunnel.tunnel.localHostname": {
"type": "string",
"default": "localhost",
"markdownDescription": "A local hostname in your network. Your probably want `localhost` or `127.0.0.1`. It's also possible to use an ip of other machine in the same network. Example: `192.168.1.100`"
},
"cloudflaretunnel.gui.showStatusBarItem": {
"type": "boolean",
"default": true,
"description": "Show an item in the status bar to start or stop the tunnel."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.4",
"@types/mocha": "^9.0.0",
"@types/node": "14.x",
"@types/vscode": "^1.62.0",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"@vscode/test-electron": "^1.6.2",
"eslint": "^8.1.0",
"glob": "^7.1.7",
"mocha": "^9.1.3",
"typescript": "^4.4.4"
},
"dependencies": {
"@microsoft/vscode-file-downloader-api": "^1.0.1"
}
}