unplugin-cloudflare-tunnel 0.1.1 → 0.1.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/package.json +13 -11
- /package/{.github/README.md → README.md} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "unplugin-cloudflare-tunnel",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "A plugin that automatically creates and manages Cloudflare tunnels for local development",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"imports": {
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"dist",
|
|
12
12
|
"LICENSE",
|
|
13
13
|
"package.json",
|
|
14
|
-
"
|
|
14
|
+
"README.md"
|
|
15
15
|
],
|
|
16
16
|
"types": "./dist/index.d.mts",
|
|
17
17
|
"exports": {
|
|
@@ -47,6 +47,8 @@
|
|
|
47
47
|
"publint": "bun x publint@latest run --pack bun --strict",
|
|
48
48
|
"attw": "bun x @arethetypeswrong/cli@latest --pack . --ignore-rules='false-cjs' --ignore-rules='cjs-resolves-to-esm' --profile='node16'",
|
|
49
49
|
"prepublishOnly": "bun run build",
|
|
50
|
+
"prepack": "cp .github/README.md .",
|
|
51
|
+
"postpack": "rm README.md",
|
|
50
52
|
"prepare": "simple-git-hooks"
|
|
51
53
|
},
|
|
52
54
|
"dependencies": {
|
|
@@ -60,28 +62,29 @@
|
|
|
60
62
|
"@j178/prek": "^0.3.8",
|
|
61
63
|
"@rolldown/pluginutils": "^1.0.0-rc.15",
|
|
62
64
|
"@rspack/core": "^1.7.11",
|
|
65
|
+
"@socketsecurity/bun-security-scanner": "^1.1.2",
|
|
63
66
|
"@sxzz/test-utils": "^0.5.16",
|
|
64
67
|
"@total-typescript/ts-reset": "^0.6.1",
|
|
65
68
|
"@types/bun": "^1.3.12",
|
|
66
69
|
"@types/node": "^25.6.0",
|
|
67
|
-
"@typescript/native-preview": "^7.0.0-dev.
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"oxlint
|
|
70
|
+
"@typescript/native-preview": "^7.0.0-dev.20260421.1",
|
|
71
|
+
"astro": "^6.1.6",
|
|
72
|
+
"oxfmt": "^0.46.0",
|
|
73
|
+
"oxlint": "^1.61.0",
|
|
74
|
+
"oxlint-tsgolint": "^0.21.1",
|
|
71
75
|
"publint": "^0.3.18",
|
|
72
76
|
"rolldown": "^1.0.0-rc.15",
|
|
73
77
|
"rollup": "^4.60.1",
|
|
74
78
|
"simple-git-hooks": "^2.13.1",
|
|
75
79
|
"tsdown": "^0.21.8",
|
|
76
80
|
"tsx": "^4.21.0",
|
|
77
|
-
"typescript": "^6.0.
|
|
81
|
+
"typescript": "^6.0.3",
|
|
78
82
|
"unplugin-unused": "^0.5.7",
|
|
79
83
|
"unplugin-utils": "^0.3.1",
|
|
80
84
|
"vite": "^8.0.8",
|
|
81
85
|
"vitest": "^4.1.4",
|
|
82
86
|
"webpack-dev-server": "^5.2.3",
|
|
83
|
-
"zod": "^4.3.6"
|
|
84
|
-
"astro": "^6.1.6"
|
|
87
|
+
"zod": "^4.3.6"
|
|
85
88
|
},
|
|
86
89
|
"peerDependencies": {
|
|
87
90
|
"vite": ">=3",
|
|
@@ -132,13 +135,12 @@
|
|
|
132
135
|
"farm",
|
|
133
136
|
"astro"
|
|
134
137
|
],
|
|
135
|
-
"packageManager": "bun@1.3.
|
|
138
|
+
"packageManager": "bun@1.3.13",
|
|
136
139
|
"simple-git-hooks": {
|
|
137
140
|
"pre-commit": "bun prek run --all-files --config='.github/.pre-commit.yml'"
|
|
138
141
|
},
|
|
139
142
|
"license": "MIT",
|
|
140
143
|
"repository": "o-az/unplugin-cloudflare-tunnel",
|
|
141
|
-
"readme": "https://github.com/o-az/unplugin-cloudflare-tunnel/blob/main/.github/README.md",
|
|
142
144
|
"author": "Omar A <gh@omar.mov>",
|
|
143
145
|
"publishConfig": {
|
|
144
146
|
"access": "public"
|
|
File without changes
|