-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.46 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
{
"name": "holesail-liveports",
"displayName": "liveports",
"publisher": "holesail",
"description": "A VS Code extension to instantly create a network tunnel and share websites on your localhost with anyone in the world.",
"version": "1.0.1",
"icon": "logo.png",
"engines": {
"vscode": "^1.87.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/holesail/liveports"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "holesail-liveports.liveports-share",
"title": "Holesail Liveports Share: Instantly share your localhost website with anyone in the world."
},
{
"command": "holesail-liveports.liveports-connect",
"title": "Holesail Liveports Connect: Instantly view localhost website of anyone in the world using Liveports"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.87.0",
"@vscode/test-cli": "^0.0.6",
"@vscode/test-electron": "^2.3.9",
"eslint": "^8.56.0",
"typescript": "^5.3.3"
},
"dependencies": {
"bcrypt": "^5.1.1",
"copy-paste": "^1.5.3",
"express": "^4.19.2",
"holesail-client": "latest",
"holesail-server": "latest",
"vsce": "^2.15.0",
"vscode": "^1.1.37"
}
}