@light-auth/astro
Version:
light auth framework for astro, using arctic
66 lines • 1.4 kB
JSON
{
"name": "@light-auth/astro",
"version": "0.3.1",
"description": "light auth framework for astro, using arctic",
"author": {
"name": "Sébastien Pertus",
"email": "spertus@microsoft.com",
"url": "https://github.com/Mimetis"
},
"license": "MIT",
"keywords": [
"nodejs",
"oauth",
"oauth2",
"oidc",
"openid",
"jwt",
"authentication",
"astro",
"light-auth",
"light-auth-astro"
],
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"types": [
"./src/index.ts",
"./dist/index.d.ts"
],
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
},
"./client": {
"types": [
"./src/client/index.ts",
"./dist/client/index.d.ts"
],
"import": "./dist/client/index.mjs",
"default": "./dist/client/index.mjs"
}
},
"scripts": {
"build": "npm run clean && rollup -c --bundleConfigAsCjs",
"dev": "rollup -cw --bundleConfigAsCjs",
"clean": "shx rm -rf dist lib",
"start": "rollup -c -w"
},
"dependencies": {
"arctic": "^3.6.0",
"jose": "^6.0.10",
"@light-auth/core": "^0.3.1"
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.2",
"@types/node": "^22.15.3",
"shx": "^0.4.0",
"astro": "5.7.10",
"cookie": "^1.0.2"
},
"workspaces": [
"../light-auth-core"
]
}