generator-reshow 0.19.6 → 0.19.7
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/generators/bun/index.js
CHANGED
|
@@ -2175,6 +2175,14 @@ var defaultPackageJSON = {
|
|
|
2175
2175
|
devDependencies: {
|
|
2176
2176
|
"modality-bun-kit": "*"
|
|
2177
2177
|
},
|
|
2178
|
+
exports: {
|
|
2179
|
+
types: "./types/index.d.ts",
|
|
2180
|
+
require: "./dist/index.js",
|
|
2181
|
+
import: "./dist/index.js"
|
|
2182
|
+
},
|
|
2183
|
+
types: "./types/index.d.ts",
|
|
2184
|
+
main: "./dist/index.js",
|
|
2185
|
+
module: "./dist/index.js",
|
|
2178
2186
|
scripts: {
|
|
2179
2187
|
"build:types": "bun tsc -p ./",
|
|
2180
2188
|
build: "bun build:types",
|
|
@@ -2175,6 +2175,14 @@ var defaultPackageJSON = {
|
|
|
2175
2175
|
devDependencies: {
|
|
2176
2176
|
"modality-bun-kit": "*"
|
|
2177
2177
|
},
|
|
2178
|
+
exports: {
|
|
2179
|
+
types: "./types/index.d.ts",
|
|
2180
|
+
require: "./dist/index.js",
|
|
2181
|
+
import: "./dist/index.js"
|
|
2182
|
+
},
|
|
2183
|
+
types: "./types/index.d.ts",
|
|
2184
|
+
main: "./dist/index.js",
|
|
2185
|
+
module: "./dist/index.js",
|
|
2178
2186
|
scripts: {
|
|
2179
2187
|
"build:types": "bun tsc -p ./",
|
|
2180
2188
|
build: "bun build:types",
|
package/generators/hono/index.js
CHANGED
|
@@ -2175,6 +2175,14 @@ var defaultPackageJSON = {
|
|
|
2175
2175
|
devDependencies: {
|
|
2176
2176
|
"modality-bun-kit": "*"
|
|
2177
2177
|
},
|
|
2178
|
+
exports: {
|
|
2179
|
+
types: "./types/index.d.ts",
|
|
2180
|
+
require: "./dist/index.js",
|
|
2181
|
+
import: "./dist/index.js"
|
|
2182
|
+
},
|
|
2183
|
+
types: "./types/index.d.ts",
|
|
2184
|
+
main: "./dist/index.js",
|
|
2185
|
+
module: "./dist/index.js",
|
|
2178
2186
|
scripts: {
|
|
2179
2187
|
"build:types": "bun tsc -p ./",
|
|
2180
2188
|
build: "bun build:types",
|
package/package.json
CHANGED