next-proxy-middleware/package.json
Kevin Franklin Kim 6cac3fb66b
chore: add volta
2025-02-07 16:00:21 +01:00

40 lines
817 B
JSON

{
"name": "@foomo/next-proxy-middleware",
"module": "dist/index.js",
"version": "1.0.3",
"type": "module",
"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",
"tag": "next"
},
"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"
}
}