-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
52 lines (52 loc) · 1.25 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
{
"name": "vite-plugin-ngrok",
"version": "1.0.0",
"description": "A Vite plugin for seamless integration with ngrok, allowing you to easily share your local development server with anyone, anywhere.",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --dts --format cjs,esm",
"dev": "pnpm build --watch"
},
"peerDependencies": {
"vite": "^2.9.0 || ^3.0.0 || ^4.0.0 || ^5.0.0"
},
"keywords": [
"vite-plugin",
"vite",
"ngrok"
],
"author": "Ross Gerbasi",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/aphex/vite-plugin-ngrok"
},
"bugs": {
"url": "https://github.com/aphex/vite-plugin-ngrok/issues"
},
"homepage": "https://github.com/aphex/vite-plugin-ngrok#readme",
"devDependencies": {
"@types/node": "^20.10.3",
"prettier": "^3.1.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vite": "^5.0.6"
},
"dependencies": {
"@ngrok/ngrok": "^0.9.1",
"picocolors": "^1.0.0"
}
}