Merge remote-tracking branch 'origin/main'

This commit is contained in:
franklin 2025-02-07 15:56:45 +01:00
commit 9f96fe8d84
No known key found for this signature in database

View File

@ -1,7 +1,7 @@
{
"name": "@foomo/next-proxy-middleware",
"module": "src/index.ts",
"version": "1.0.0",
"module": "dist/index.js",
"version": "1.0.3",
"type": "module",
"scripts": {
"build": "tsc",
@ -12,12 +12,15 @@
"publish": "bun run build && bun publish --access public"
},
"publishConfig": {
"access": "public",
"tag": "next"
},
"types": "dist/index.d.ts",
"files": ["dist"],
"exports": {
".": {
"import": "./src/index.ts",
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"require": "./dist/index.js"
}
},