UNPKG

@workos/authkit-sveltekit

Version:

Official WorkOS AuthKit SDK for SvelteKit

74 lines (73 loc) 1.72 kB
{ "name": "@workos/authkit-sveltekit", "version": "0.0.1-alpha.0", "description": "Official WorkOS AuthKit SDK for SvelteKit", "type": "module", "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.cjs" } }, "files": [ "dist", "README.md", "LICENSE" ], "scripts": { "build": "tsup", "dev": "tsup --watch", "test": "vitest", "test:coverage": "vitest --coverage", "lint": "eslint src --ext .ts", "format": "prettier --write src/**/*.ts", "type-check": "tsc --noEmit", "prepublishOnly": "npm run build && npm run test" }, "keywords": [ "workos", "authkit", "sveltekit", "authentication", "auth" ], "author": "WorkOS", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/workos/authkit-sveltekit.git" }, "peerDependencies": { "@sveltejs/kit": ">=2.0.0" }, "engines": { "node": ">=18.0.0" }, "dependencies": { "@workos/authkit-session": "^0.0.1-alpha.1", "cookie": "^1.0.2" }, "devDependencies": { "@sveltejs/kit": "^2.26.1", "@sveltejs/vite-plugin-svelte": "^6.1.0", "@types/cookie": "^0.6.0", "@types/node": "^24.1.0", "@typescript-eslint/eslint-plugin": "^8.38.0", "@typescript-eslint/parser": "^8.38.0", "@vitest/coverage-v8": "^3.2.4", "eslint": "^9.32.0", "prettier": "^3.6.2", "tsup": "^8.5.0", "typescript": "^5.8.3", "vitest": "^3.2.4" }, "pnpm": { "overrides": { "@workos/authkit-session": "file:../authkit-session" } } }