UNPKG

svoauth

Version:

`svoauth` is a minimal and flexible OAuth 2.0 wrapper designed for SvelteKit projects. It uses a config-driven approach so you can easily plug in providers like GitHub, Google, and more.

60 lines (59 loc) 1.07 kB
{ "name": "svoauth", "version": "1.2.0", "main": "dist/index.js", "module": "dist/index.js", "types": "dist/index.d.ts", "type": "module", "author": "Jack Sansom <contact@jacksansom.com>", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/sansjack/svoauth" }, "exports": { ".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "./types": { "types": "./dist/types.d.ts" } }, "keywords": [ "svelte", "sveltekit", "svelte5", "oauth", "oauth2", "pkce", "authorization", "config-driven" ], "files": [ "dist", "package.json", "README.md", "LICENSE" ], "scripts": { "build": "bunup", "dev": "bun --watch src/index.ts", "test": "bun test" }, "devDependencies": { "bun-types": "^1.2.9", "bunup": "0.4.15", "typescript": "^5.8.3", "semantic-release": "^24.2.3", "@semantic-release/git": "^10.0.1", "@semantic-release/npm": "^12.0.1" }, "peerDependencies": { "svelte": ">=4.0.0", "@sveltejs/kit": ">=2.0.0" }, "publishConfig": { "access": "public" } }