unplugin-cloudflare-tunnel 0.0.0-alpha-1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api.d.mts +50 -0
- package/dist/api.mjs +59 -0
- package/dist/{esbuild.d.ts → esbuild.d.mts} +1 -1
- package/dist/{esbuild.js → esbuild.mjs} +6 -1
- package/dist/{farm.d.ts → farm.d.mts} +1 -1
- package/dist/{farm.js → farm.mjs} +6 -1
- package/dist/{index-BjNI6nQt.d.ts → index.d.mts} +45 -35
- package/dist/{src-BC4MyCER.js → index.mjs} +393 -104
- package/dist/{rolldown.d.ts → rolldown.d.mts} +1 -1
- package/dist/{rolldown.js → rolldown.mjs} +6 -1
- package/dist/{rollup.d.ts → rollup.d.mts} +1 -1
- package/dist/{rollup.js → rollup.mjs} +6 -1
- package/dist/{rspack.d.ts → rspack.d.mts} +1 -1
- package/dist/{rspack.js → rspack.mjs} +6 -1
- package/dist/schemas-CwcXCIyR.mjs +941 -0
- package/dist/{vite.d.ts → vite.d.mts} +1 -1
- package/dist/{vite.js → vite.mjs} +6 -1
- package/dist/{webpack.d.ts → webpack.d.mts} +1 -1
- package/dist/{webpack.js → webpack.mjs} +6 -1
- package/package.json +48 -44
- package/dist/api.d.ts +0 -1
- package/dist/api.js +0 -1
- package/dist/index.d.ts +0 -2
- package/dist/index.js +0 -3
- /package/dist/{astro.d.ts → astro.d.mts} +0 -0
- /package/dist/{astro.js → astro.mjs} +0 -0
- /package/dist/{virtual.d.ts → virtual.d.mts} +0 -0
package/package.json
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "unplugin-cloudflare-tunnel",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"packageManager": "bun@1.3.1",
|
|
3
|
+
"version": "0.0.2",
|
|
5
4
|
"description": "A plugin that automatically creates and manages Cloudflare tunnels for local development",
|
|
6
5
|
"type": "module",
|
|
7
6
|
"imports": {
|
|
@@ -12,22 +11,21 @@
|
|
|
12
11
|
"dist",
|
|
13
12
|
"package.json"
|
|
14
13
|
],
|
|
15
|
-
"main": "./dist/index.
|
|
16
|
-
"module": "./dist/index.
|
|
17
|
-
"types": "./dist/index.d.
|
|
14
|
+
"main": "./dist/index.mjs",
|
|
15
|
+
"module": "./dist/index.mjs",
|
|
16
|
+
"types": "./dist/index.d.mts",
|
|
18
17
|
"exports": {
|
|
19
|
-
".": "./dist/index.
|
|
20
|
-
"./
|
|
21
|
-
"./
|
|
22
|
-
"./
|
|
23
|
-
"./
|
|
24
|
-
"./
|
|
25
|
-
"./
|
|
26
|
-
"./
|
|
27
|
-
"./
|
|
28
|
-
"./
|
|
29
|
-
"./*": "./*"
|
|
30
|
-
"./virtual": "./dist/virtual.d.ts"
|
|
18
|
+
".": "./dist/index.mjs",
|
|
19
|
+
"./api": "./dist/api.mjs",
|
|
20
|
+
"./astro": "./dist/astro.mjs",
|
|
21
|
+
"./esbuild": "./dist/esbuild.mjs",
|
|
22
|
+
"./farm": "./dist/farm.mjs",
|
|
23
|
+
"./rolldown": "./dist/rolldown.mjs",
|
|
24
|
+
"./rollup": "./dist/rollup.mjs",
|
|
25
|
+
"./rspack": "./dist/rspack.mjs",
|
|
26
|
+
"./vite": "./dist/vite.mjs",
|
|
27
|
+
"./webpack": "./dist/webpack.mjs",
|
|
28
|
+
"./*": "./*"
|
|
31
29
|
},
|
|
32
30
|
"typesVersions": {
|
|
33
31
|
"*": {
|
|
@@ -38,49 +36,47 @@
|
|
|
38
36
|
}
|
|
39
37
|
},
|
|
40
38
|
"scripts": {
|
|
41
|
-
"build": "tsdown
|
|
39
|
+
"build": "tsdown",
|
|
42
40
|
"check": "biome check . --fix --unsafe",
|
|
43
|
-
"check:types": "
|
|
44
|
-
"publint": "bun x publint@latest run --pack bun --strict",
|
|
45
|
-
"attw": "bun x @arethetypeswrong/cli@latest --pack . --ignore-rules='false-cjs' --ignore-rules='cjs-resolves-to-esm'",
|
|
41
|
+
"check:types": "bun tsgo --project tsconfig.json --noEmit",
|
|
46
42
|
"changeset:version": "changeset version && biome format . --write",
|
|
47
43
|
"changeset:publish": "bun ./scripts/publish.ts --registry='https://registry.npmjs.org'",
|
|
48
|
-
"
|
|
44
|
+
"publint": "bun x publint@latest run --pack bun --strict",
|
|
45
|
+
"attw": "bun x @arethetypeswrong/cli@latest --pack . --ignore-rules='false-cjs' --ignore-rules='cjs-resolves-to-esm'",
|
|
49
46
|
"prepublishOnly": "bun run build"
|
|
50
47
|
},
|
|
51
48
|
"dependencies": {
|
|
52
49
|
"cloudflared": "^0.7.1",
|
|
53
|
-
"unplugin": "^2.3.
|
|
54
|
-
"unplugin-utils": "^0.3.1",
|
|
55
|
-
"zod": "^4.1.12"
|
|
50
|
+
"unplugin": "^2.3.11"
|
|
56
51
|
},
|
|
57
52
|
"devDependencies": {
|
|
58
53
|
"@arethetypeswrong/core": "^0.18.2",
|
|
59
|
-
"@biomejs/biome": "^2.3.
|
|
60
|
-
"@changesets/changelog-github": "^0.5.
|
|
61
|
-
"@changesets/cli": "^2.29.
|
|
62
|
-
"@rspack/core": "^1.
|
|
63
|
-
"@sxzz/test-utils": "^0.5.
|
|
54
|
+
"@biomejs/biome": "^2.3.10",
|
|
55
|
+
"@changesets/changelog-github": "^0.5.2",
|
|
56
|
+
"@changesets/cli": "^2.29.8",
|
|
57
|
+
"@rspack/core": "^1.7.0",
|
|
58
|
+
"@sxzz/test-utils": "^0.5.15",
|
|
64
59
|
"@total-typescript/ts-reset": "^0.6.1",
|
|
65
|
-
"@types/bun": "^1.3.
|
|
66
|
-
"@types/node": "^
|
|
67
|
-
"
|
|
68
|
-
"publint": "^0.3.
|
|
69
|
-
"rollup": "^4.
|
|
70
|
-
"tsdown": "^0.
|
|
71
|
-
"tsx": "^4.
|
|
60
|
+
"@types/bun": "^1.3.5",
|
|
61
|
+
"@types/node": "^25.0.3",
|
|
62
|
+
"@typescript/native-preview": "^7.0.0-dev.20251231.1",
|
|
63
|
+
"publint": "^0.3.16",
|
|
64
|
+
"rollup": "^4.54.0",
|
|
65
|
+
"tsdown": "^0.18.4",
|
|
66
|
+
"tsx": "^4.21.0",
|
|
72
67
|
"typescript": "^5.9.3",
|
|
73
|
-
"unplugin-unused": "^0.5.
|
|
74
|
-
"vite": "^7.
|
|
75
|
-
"vitest": "^4.0.
|
|
76
|
-
"webpack-dev-server": "^5.2.2"
|
|
68
|
+
"unplugin-unused": "^0.5.6",
|
|
69
|
+
"vite": "^7.3.0",
|
|
70
|
+
"vitest": "^4.0.16",
|
|
71
|
+
"webpack-dev-server": "^5.2.2",
|
|
72
|
+
"zod": "^4.3.3"
|
|
77
73
|
},
|
|
78
74
|
"peerDependencies": {
|
|
79
75
|
"vite": ">=3",
|
|
80
76
|
"esbuild": ">=0.2",
|
|
81
|
-
"rollup": "
|
|
77
|
+
"rollup": ">=3",
|
|
82
78
|
"@farmfe/core": ">=1",
|
|
83
|
-
"webpack": "
|
|
79
|
+
"webpack": ">=5",
|
|
84
80
|
"@rspack/core": ">=1",
|
|
85
81
|
"astro": ">=5"
|
|
86
82
|
},
|
|
@@ -110,8 +106,14 @@
|
|
|
110
106
|
"optional": true
|
|
111
107
|
}
|
|
112
108
|
},
|
|
109
|
+
"resolutions": {
|
|
110
|
+
"zod": "^4.3.3"
|
|
111
|
+
},
|
|
112
|
+
"overrides": {
|
|
113
|
+
"zod": "^4.3.3"
|
|
114
|
+
},
|
|
113
115
|
"engines": {
|
|
114
|
-
"node": ">=20.
|
|
116
|
+
"node": ">=20.0"
|
|
115
117
|
},
|
|
116
118
|
"keywords": [
|
|
117
119
|
"unplugin",
|
|
@@ -124,8 +126,10 @@
|
|
|
124
126
|
"farm",
|
|
125
127
|
"astro"
|
|
126
128
|
],
|
|
129
|
+
"packageManager": "bun@1.3.5",
|
|
127
130
|
"license": "MIT",
|
|
128
131
|
"repository": "o-az/unplugin-cloudflare-tunnel",
|
|
132
|
+
"readme": "https://github.com/o-az/unplugin-cloudflare-tunnel/blob/main/.github/README.md",
|
|
129
133
|
"author": "Omar A <gh@omar.mov>",
|
|
130
134
|
"publishConfig": {
|
|
131
135
|
"access": "public"
|
package/dist/api.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { };
|
package/dist/api.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { };
|
package/dist/index.d.ts
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
import { a as DNSRecord, i as CloudflareTunnelOptions, n as CloudflareApiResponse, o as Tunnel, r as CloudflareTunnel, s as Zone, t as Account } from "./index-BjNI6nQt.js";
|
|
2
|
-
export { Account, CloudflareApiResponse, CloudflareTunnel, CloudflareTunnel as default, CloudflareTunnelOptions, DNSRecord, Tunnel, Zone };
|
package/dist/index.js
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|