2023-02-04 19:02:56 +08:00
|
|
|
{
|
2023-02-04 19:20:42 +08:00
|
|
|
"name": "@hono/firebase-auth",
|
2025-01-05 16:17:08 +08:00
|
|
|
"version": "1.4.2",
|
2023-02-04 19:02:56 +08:00
|
|
|
"description": "A third-party firebase auth middleware for Hono",
|
2024-01-03 11:14:06 +08:00
|
|
|
"type": "module",
|
|
|
|
"main": "dist/index.cjs",
|
|
|
|
"module": "dist/index.js",
|
2023-02-04 19:02:56 +08:00
|
|
|
"types": "dist/index.d.ts",
|
|
|
|
"files": [
|
|
|
|
"dist"
|
|
|
|
],
|
|
|
|
"scripts": {
|
|
|
|
"start-firebase-emulator": "firebase emulators:start --project example-project12345",
|
2023-11-12 08:50:13 +08:00
|
|
|
"test-with-emulator": "firebase emulators:exec --project example-project12345 'vitest run'",
|
|
|
|
"test": "vitest run",
|
2024-01-03 11:14:06 +08:00
|
|
|
"build": "tsup ./src/index.ts --format esm,cjs --dts",
|
|
|
|
"publint": "publint",
|
|
|
|
"prerelease": "yarn build && arn publint",
|
2023-02-04 19:02:56 +08:00
|
|
|
"release": "yarn publish"
|
|
|
|
},
|
2024-01-03 11:14:06 +08:00
|
|
|
"exports": {
|
|
|
|
".": {
|
|
|
|
"import": {
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
"default": "./dist/index.js"
|
|
|
|
},
|
|
|
|
"require": {
|
|
|
|
"types": "./dist/index.d.cts",
|
|
|
|
"default": "./dist/index.cjs"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2023-02-04 19:02:56 +08:00
|
|
|
"license": "MIT",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2023-02-04 19:20:42 +08:00
|
|
|
"url": "https://github.com/honojs/middleware.git"
|
2023-02-04 19:02:56 +08:00
|
|
|
},
|
2023-02-04 19:20:42 +08:00
|
|
|
"homepage": "https://github.com/honojs/middleware",
|
2023-02-04 19:02:56 +08:00
|
|
|
"author": "codehex",
|
|
|
|
"publishConfig": {
|
|
|
|
"registry": "https://registry.npmjs.org",
|
|
|
|
"access": "public"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2025-01-05 16:05:41 +08:00
|
|
|
"firebase-auth-cloudflare-workers": "^2.0.6"
|
2023-02-04 19:20:42 +08:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2024-04-18 06:38:42 +08:00
|
|
|
"hono": "*"
|
2023-02-04 19:02:56 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-02-24 21:35:24 +08:00
|
|
|
"@cloudflare/workers-types": "^4.20240222.0",
|
2025-01-05 16:05:41 +08:00
|
|
|
"firebase-tools": "^13.29.1",
|
2024-04-18 06:38:42 +08:00
|
|
|
"hono": "^4.2.4",
|
2024-02-24 21:35:24 +08:00
|
|
|
"miniflare": "^3.20240208.0",
|
|
|
|
"prettier": "^3.2.5",
|
|
|
|
"tsup": "^8.0.2",
|
|
|
|
"typescript": "^5.3.3",
|
2025-03-12 11:52:15 +08:00
|
|
|
"vitest": "^3.0.8"
|
2023-02-04 19:02:56 +08:00
|
|
|
}
|
2024-01-04 12:05:17 +08:00
|
|
|
}
|