svelte.sk-auth/package.json

63 lines
1.6 KiB
JSON
Raw Normal View History

{
"name": "svelte-kit-auth",
"version": "1.0.0",
"description": "Authentication library for use with SvelteKit featuring built-in OAuth providers and zero restriction customization!",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./client": "./dist/client/index.js",
"./providers": "./dist/providers/index.js"
},
"typesVersions": {
"*": {
"client": [
"./dist/client/index.d.ts"
],
"providers": [
"./dist/providers/index.d.ts"
]
}
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "prettier --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"format": "prettier --write --plugin-search-dir=. ."
},
"keywords": [
"auth",
"authentication",
"csrf",
"jwt",
"nodejs",
"oauth",
"oauth2",
"oidc",
"sveltejs",
"sveltekit",
"sveltekitauth"
],
"author": "RaviAnand Mohabir <moravrav@gmail.com> (https://ravianand.web.app)",
"repository": "https://github.com/Dan6erbond/SvelteKitAuth",
"license": "MIT",
"private": false,
"dependencies": {
"cookie": "^0.4.1",
"jsonwebtoken": "^8.5.1"
},
"devDependencies": {
2021-05-17 19:00:01 +02:00
"@sveltejs/kit": "^1.0.0-next.107",
"@types/jsonwebtoken": "^8.5.1",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.3.0",
2021-05-17 19:00:01 +02:00
"svelte": "^3.38.2",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
}
}