-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 999 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 999 Bytes
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
{
"name": "vite-plugin-ssh-tunnel",
"version": "1.2.1",
"description": "Vite plugin to set up a reverse SSH tunnel for reverse proxies",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/fabrykowski/vite-plugin-ssh-tunnel.git"
},
"author": "fabrykowski",
"license": "MIT",
"bugs": {
"url": "https://github.com/fabrykowski/vite-plugin-ssh-tunnel/issues"
},
"homepage": "https://github.com/fabrykowski/vite-plugin-ssh-tunnel#readme",
"dependencies": {
"picocolors": "^1.0.0",
"shell-quote": "^1.8.3"
},
"peerDependencies": {
"vite": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0"
},
"main": "./index.js",
"exports": "./index.js",
"types": "./index.d.ts",
"devDependencies": {
"@types/node": ">=20.0.0",
"@types/shell-quote": "^1.7.5"
},
"keywords": [
"vite-plugin",
"vite",
"plugin",
"ssh",
"tunnel",
"reverse",
"proxy"
],
"files": [
"index.js",
"index.d.ts"
]
}