2021-05-17 18:47:18 +02:00
|
|
|
{
|
2021-05-23 18:23:31 +02:00
|
|
|
"name": "sk-auth",
|
2022-02-23 14:53:38 +01:00
|
|
|
"version": "0.4.1",
|
2021-05-17 18:47:18 +02:00
|
|
|
"description": "Authentication library for use with SvelteKit featuring built-in OAuth providers and zero restriction customization!",
|
|
|
|
"main": "dist/index.js",
|
2021-05-26 13:50:36 +02:00
|
|
|
"module": "dist/index.esm.js",
|
2021-05-21 17:59:21 +02:00
|
|
|
"types": "dist/index.d.ts",
|
|
|
|
"exports": {
|
|
|
|
".": "./dist/index.js",
|
|
|
|
"./client": "./dist/client/index.js",
|
2021-05-25 23:24:32 +02:00
|
|
|
"./providers": "./dist/providers/index.js",
|
|
|
|
"./package.json": "./package.json"
|
2021-05-21 17:59:21 +02:00
|
|
|
},
|
2021-05-23 17:32:42 +02:00
|
|
|
"files": [
|
|
|
|
"dist",
|
|
|
|
"client",
|
|
|
|
"providers",
|
|
|
|
"README.md"
|
|
|
|
],
|
2021-05-17 18:47:18 +02:00
|
|
|
"scripts": {
|
2022-02-23 11:25:59 +01:00
|
|
|
"prepare": "npm run build",
|
2021-05-23 17:32:42 +02:00
|
|
|
"build": "rollup --config",
|
|
|
|
"dev": "rollup --config --watch",
|
2021-05-17 18:47:18 +02:00
|
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
2022-01-12 19:00:35 +01:00
|
|
|
"lint": "prettier --check --plugin-search-dir=. . && eslint .",
|
2021-05-17 18:47:18 +02:00
|
|
|
"format": "prettier --write --plugin-search-dir=. ."
|
|
|
|
},
|
|
|
|
"keywords": [
|
2021-05-21 17:59:21 +02:00
|
|
|
"auth",
|
|
|
|
"authentication",
|
|
|
|
"csrf",
|
|
|
|
"jwt",
|
|
|
|
"nodejs",
|
|
|
|
"oauth",
|
|
|
|
"oauth2",
|
|
|
|
"oidc",
|
2021-05-17 18:47:18 +02:00
|
|
|
"sveltejs",
|
|
|
|
"sveltekit",
|
2021-05-21 17:59:21 +02:00
|
|
|
"sveltekitauth"
|
2021-05-17 18:47:18 +02:00
|
|
|
],
|
|
|
|
"author": "RaviAnand Mohabir <moravrav@gmail.com> (https://ravianand.web.app)",
|
2021-05-23 17:45:30 +02:00
|
|
|
"repository": "https://github.com/Dan6erbond/svelte-kit-auth.git",
|
2021-05-17 18:47:18 +02:00
|
|
|
"license": "MIT",
|
|
|
|
"private": false,
|
|
|
|
"dependencies": {
|
|
|
|
"cookie": "^0.4.1",
|
2022-03-17 02:03:03 +01:00
|
|
|
"jose": "^4.6.0"
|
2021-05-17 18:47:18 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-05-23 17:32:42 +02:00
|
|
|
"@rollup/plugin-typescript": "^8.2.1",
|
2022-02-23 11:25:59 +01:00
|
|
|
"@sveltejs/kit": "^1.0.0-next.259",
|
2021-05-17 18:47:18 +02:00
|
|
|
"@types/jsonwebtoken": "^8.5.1",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^4.23.0",
|
|
|
|
"@typescript-eslint/parser": "^4.23.0",
|
2021-05-25 23:24:32 +02:00
|
|
|
"build-esm": "^4.2.2",
|
2021-05-23 17:32:42 +02:00
|
|
|
"esbuild": "^0.12.1",
|
2021-05-17 18:47:18 +02:00
|
|
|
"eslint": "^7.26.0",
|
|
|
|
"eslint-config-prettier": "^8.3.0",
|
|
|
|
"prettier": "^2.3.0",
|
2021-05-23 17:32:42 +02:00
|
|
|
"rollup": "^2.48.0",
|
|
|
|
"rollup-plugin-esbuild": "^4.2.3",
|
|
|
|
"rollup-plugin-multi-input": "^1.3.0",
|
2021-05-17 19:00:01 +02:00
|
|
|
"svelte": "^3.38.2",
|
2021-05-17 18:47:18 +02:00
|
|
|
"tslib": "^2.2.0",
|
|
|
|
"typescript": "^4.2.4"
|
2021-05-23 17:32:42 +02:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2021-05-25 23:24:32 +02:00
|
|
|
"@sveltejs/kit": "next",
|
|
|
|
"build-esm": "^4.2.2"
|
2021-05-17 18:47:18 +02:00
|
|
|
}
|
|
|
|
}
|