2023-12-29 03:30:25 +08:00
|
|
|
{
|
|
|
|
"name": "@hono/auth-js",
|
2024-11-08 03:55:22 +08:00
|
|
|
"version": "1.0.15",
|
2023-12-29 03:30:25 +08:00
|
|
|
"description": "A third-party Auth js middleware for Hono",
|
|
|
|
"main": "dist/index.js",
|
|
|
|
"exports": {
|
|
|
|
".": {
|
|
|
|
"import": {
|
|
|
|
"types": "./dist/index.d.mts",
|
|
|
|
"default": "./dist/index.mjs"
|
|
|
|
},
|
|
|
|
"require": {
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
"default": "./dist/index.js"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"./react": {
|
|
|
|
"import": {
|
|
|
|
"types": "./dist/react.d.mts",
|
|
|
|
"default": "./dist/react.mjs"
|
|
|
|
},
|
|
|
|
"require": {
|
|
|
|
"types": "./dist/react.d.ts",
|
|
|
|
"default": "./dist/react.js"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"typesVersions": {
|
|
|
|
"*": {
|
|
|
|
"react": [
|
|
|
|
"./dist/react.d.mts"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"dist"
|
|
|
|
],
|
|
|
|
"scripts": {
|
|
|
|
"test": "vitest --run",
|
|
|
|
"build": "tsup",
|
|
|
|
"prerelease": "yarn build && yarn test",
|
|
|
|
"release": "yarn publish"
|
|
|
|
},
|
|
|
|
"license": "MIT",
|
|
|
|
"publishConfig": {
|
|
|
|
"registry": "https://registry.npmjs.org",
|
|
|
|
"access": "public"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/honojs/middleware.git"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/honojs/middleware",
|
|
|
|
"peerDependencies": {
|
|
|
|
"@auth/core": "0.*",
|
2024-02-10 07:44:21 +08:00
|
|
|
"hono": ">=3.*",
|
2024-11-08 03:48:15 +08:00
|
|
|
"react": "^18 || ^19 || ^19.0.0-rc"
|
2023-12-29 03:30:25 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-10-05 11:40:14 +08:00
|
|
|
"@auth/core": "^0.35.3",
|
2023-12-29 03:30:25 +08:00
|
|
|
"@types/react": "^18",
|
|
|
|
"hono": "^3.11.7",
|
|
|
|
"react": "^18.2.0",
|
|
|
|
"tsup": "^8.0.1",
|
|
|
|
"typescript": "^5.3.3",
|
2025-03-12 11:52:15 +08:00
|
|
|
"vitest": "^3.0.8"
|
2023-12-29 03:30:25 +08:00
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">=18.4.0"
|
|
|
|
}
|
2024-01-04 12:05:17 +08:00
|
|
|
}
|