Files
next-proxy-middleware/package.json
T
2026-03-20 08:53:27 +01:00

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"
}