honojs-middleware/package.json

42 lines
1.1 KiB
JSON
Raw Normal View History

2022-07-23 22:56:20 +08:00
{
2022-07-28 13:58:54 +08:00
"name": "@honojs/firebase-auth",
"version": "0.1.0",
"description": "A third-party firebase auth middleware for Hono",
2022-07-23 22:56:20 +08:00
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
2022-07-28 13:58:54 +08:00
"start-firebase-emulator": "firebase emulators:start --project example-project12345",
2022-07-23 22:56:20 +08:00
"test": "jest",
2022-07-28 13:58:54 +08:00
"build": "tsc",
"prerelease": "yarn build",
2022-07-23 22:56:20 +08:00
"release": "yarn publish"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/honojs/middleware-template.git"
},
"homepage": "https://github.com/honojs/middleware-template",
2022-07-28 13:58:54 +08:00
"author": "codehex",
2022-07-23 22:56:20 +08:00
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"dependencies": {
2022-07-28 13:58:54 +08:00
"firebase-auth-cloudflare-workers": "^1.0.0",
2022-07-23 22:56:20 +08:00
"hono": "^2.0.2"
},
"devDependencies": {
2022-07-28 13:58:54 +08:00
"@cloudflare/workers-types": "^3.14.1",
2022-07-23 22:56:20 +08:00
"@types/jest": "^28.1.4",
"jest": "^28.1.2",
"jest-environment-miniflare": "^2.6.0",
"prettier": "^2.7.1",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
}
2022-07-28 13:58:54 +08:00
}