-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
124 lines (124 loc) · 3.19 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "ngrok-for-vscode",
"version": "1.10.1",
"displayName": "ngrok for VSCode",
"description": "A VSCode extension to control ngrok from the command palette.",
"keywords": [
"ngrok",
"localtunnel",
"tunnel",
"http",
"webhooks"
],
"author": {
"name": "Phil Nash",
"email": "[email protected]",
"url": "https://philna.sh/"
},
"publisher": "philnash",
"homepage": "https://github.com/philnash/ngrok-for-vscode",
"bugs": {
"url": "https://github.com/philnash/ngrok-for-vscode/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/philnash/ngrok-for-vscode.git"
},
"icon": "images/icon.png",
"engines": {
"vscode": "^1.44.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:ngrok-for-vscode.start",
"onCommand:ngrok-for-vscode.stop",
"onCommand:ngrok-for-vscode.dashboard",
"onCommand:ngrok-for-vscode.editSettings",
"onCommand:ngrok-for-vscode.setAuthToken"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "ngrok-for-vscode.start",
"title": "start",
"category": "ngrok"
},
{
"command": "ngrok-for-vscode.stop",
"title": "stop",
"category": "ngrok"
},
{
"command": "ngrok-for-vscode.dashboard",
"title": "dashboard",
"category": "ngrok"
},
{
"command": "ngrok-for-vscode.editSettings",
"title": "edit ngrok settings",
"category": "ngrok"
},
{
"command": "ngrok-for-vscode.setAuthToken",
"title": "set auth token",
"category": "ngrok"
}
],
"configuration": {
"title": "ngrok for VSCode",
"properties": {
"ngrokForVSCode.configPath": {
"type": "string",
"default": "",
"description": "The location of your ngrok config file."
}
}
}
},
"sponsor": {
"url": "https://github.com/sponsors/philnash/"
},
"scripts": {
"publish": "vsce publish --githubBranch main",
"vscode:prepublish": "webpack --mode production",
"compile": "webpack --mode development",
"watch": "webpack --mode development --watch",
"test-compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"format": "prettier --write '*.json' src",
"pretest": "npm run test-compile && npm run lint",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mkdirp": "^2.0.0",
"@types/mocha": "^7.0.2",
"@types/node": "^14.14.31",
"@types/qrcode": "^1.5.0",
"@types/vscode": "1.44.0",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"@vscode/vsce": "^2.19.0",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-sonarjs": "^0.19.0",
"glob": "^8.0.3",
"mocha": "^10.0.0",
"prettier": "^2.8.8",
"ts-loader": "^9.4.2",
"typescript": "^3.8.3",
"vscode-test": "^1.3.0",
"webpack": "^5.82.0",
"webpack-cli": "^5.1.0"
},
"dependencies": {
"mkdirp": "^3.0.1",
"ngrok": "^4.3.1",
"qrcode": "^1.5.1",
"yaml": "^2.2.2"
},
"license": "MIT"
}