-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 990 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 990 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": "astro-tunnel",
"description": "Expose your local Astro server to the internet",
"version": "0.1.9",
"type": "module",
"author": "Shinya Fujino <shf0811@gmail.com> (https://github.com/morinokami)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/morinokami/astro-tunnel.git"
},
"bugs": "https://github.com/morinokami/astro-tunnel/issues",
"keywords": [
"astro",
"withastro",
"astro-component",
"astro-integration"
],
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"typecheck": "tsgo --noEmit"
},
"dependencies": {
"untun": "0.1.3"
},
"devDependencies": {
"@types/node": "24.10.1",
"@typescript/native-preview": "7.0.0-dev.20251203.1",
"astro": "5.16.3",
"tsdown": "0.18.2"
},
"peerDependencies": {
"astro": ">=4.0.0"
}
}