next-proxy-middleware/package.json
2025-07-21 13:39:55 +02:00

41 lines
851 B
JSON

{
"name": "@foomo/next-proxy-middleware",
"version": "1.0.6",
"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": {},
"optionalDependencies": {
"@biomejs/biome": "1.9.4"
},
"peerDependencies": {
"next": "15",
"typescript": "5"
},
"packageManager": "bun@1.2.2",
"volta": {
"node": "22.13.1"
}
}