honojs-middleware/packages/firebase-auth/package.json

62 lines
1.6 KiB
JSON

{
"name": "@hono/firebase-auth",
"version": "1.4.2",
"description": "A third-party firebase auth middleware for Hono",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start-firebase-emulator": "firebase emulators:start --project example-project12345",
"test-with-emulator": "firebase emulators:exec --project example-project12345 'vitest run'",
"typecheck": "tsc -b tsconfig.json",
"test": "vitest",
"build": "tsup ./src/index.ts",
"prepack": "yarn build",
"publint": "attw --pack && publint"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/honojs/middleware.git",
"directory": "packages/firebase-auth"
},
"homepage": "https://github.com/honojs/middleware",
"author": "codehex",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"dependencies": {
"firebase-auth-cloudflare-workers": "^2.0.6"
},
"peerDependencies": {
"hono": "*"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.4",
"firebase-tools": "^13.29.1",
"miniflare": "^3.20240208.0",
"prettier": "^3.2.5",
"publint": "^0.3.9",
"tsup": "^8.4.0",
"typescript": "^5.8.2",
"vitest": "^3.0.8"
}
}