mirror of
https://github.com/foomo/next-proxy-middleware.git
synced 2025-10-16 12:35:36 +00:00
41 lines
851 B
JSON
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"
|
|
}
|
|
}
|