mirror of
https://github.com/foomo/next-proxy-middleware.git
synced 2026-08-15 06:10:28 +00:00
40 lines
772 B
JSON
40 lines
772 B
JSON
{
|
|
"name": "@foomo/next-proxy-middleware",
|
|
"version": "1.1.0",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"keywords": [
|
|
"foomo",
|
|
"next"
|
|
],
|
|
"module": "dist/index.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"lint": "biome check ./",
|
|
"lint:fix": "biome check --write ./",
|
|
"lint:fix:unsafe": "biome check --write --unsafe ./",
|
|
"type-check": "tsc --noEmit",
|
|
"publish": "bun run build && bun publish --access public"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"require": "./dist/index.js"
|
|
}
|
|
},
|
|
"devDependencies": {},
|
|
"peerDependencies": {
|
|
"next": ">=15",
|
|
"typescript": ">=5"
|
|
},
|
|
"packageManager": "bun@1.3.1"
|
|
}
|