UNPKG

@withstudiocms/auth-kit

Version:

Utilities for managing authentication

79 lines 2 kB
{ "name": "@withstudiocms/auth-kit", "version": "0.1.0-beta.2", "description": "Utilities for managing authentication", "author": { "name": "withstudiocms", "url": "https://studiocms.dev" }, "repository": { "type": "git", "url": "git+https://github.com/withstudiocms/studiocms.git", "directory": "packages/@withstudiocms/auth-kit" }, "contributors": [ "Adammatthiesen", "jdtjenkins", "dreyfus92", "code.spirit" ], "license": "MIT", "keywords": [ "astro-studiocms", "cms", "studiocms" ], "homepage": "https://studiocms.dev", "publishConfig": { "access": "public", "provenance": true }, "sideEffects": false, "files": [ "dist" ], "exports": { ".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "./config": { "types": "./dist/config.d.ts", "default": "./dist/config.js" }, "./errors": { "types": "./dist/errors.d.ts", "default": "./dist/errors.js" }, "./types": { "types": "./dist/types.d.ts", "default": "./dist/types.js" }, "./utils/*": { "types": "./dist/utils/*.d.ts", "default": "./dist/utils/*.js" } }, "type": "module", "dependencies": { "@oslojs/binary": "^1.0.0", "@oslojs/crypto": "^1.0.1", "@oslojs/encoding": "^1.1.0", "@withstudiocms/effect": "0.1.0-beta.3" }, "devDependencies": { "@types/node": "^22.0.0" }, "peerDependencies": { "astro": "^5.12.9" }, "scripts": { "update:username-list": "node ./scripts/update-usernames.js", "update:password-list": "node ./scripts/update-passwords.js", "update:lists": "pnpm update:username-list && pnpm update:password-list", "build": "pnpm update:lists && pnpm buildkit build 'src/**/*.{ts,astro,css,json,png}'", "dev": "pnpm update:lists && pnpm buildkit dev 'src/**/*.{ts,astro,css,json,png}'", "test": "vitest", "typecheck": "tspc -p tsconfig.tspc.json" } }