forked from Dan6erbond/sk-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.89 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "sk-auth",
"version": "0.4.1",
"description": "Authentication library for use with SvelteKit featuring built-in OAuth providers and zero restriction customization!",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./client": "./dist/client/index.js",
"./providers": "./dist/providers/index.js",
"./package.json": "./package.json"
},
"files": [
"dist",
"client",
"providers",
"README.md"
],
"scripts": {
"prepare": "npm run build",
"build": "rollup --config",
"dev": "rollup --config --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "prettier --check --plugin-search-dir=. . && eslint .",
"format": "prettier --write --plugin-search-dir=. ."
},
"keywords": [
"auth",
"authentication",
"csrf",
"jwt",
"nodejs",
"oauth",
"oauth2",
"oidc",
"sveltejs",
"sveltekit",
"sveltekitauth"
],
"author": "RaviAnand Mohabir <[email protected]> (https://ravianand.web.app)",
"repository": "https://github.com/Dan6erbond/svelte-kit-auth.git",
"license": "MIT",
"private": false,
"dependencies": {
"cookie": "^0.4.1",
"jsonwebtoken": "^8.5.1"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.1",
"@sveltejs/kit": "^1.0.0-next.259",
"@types/jsonwebtoken": "^8.5.1",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"build-esm": "^4.2.2",
"esbuild": "^0.12.1",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.3.0",
"rollup": "^2.48.0",
"rollup-plugin-esbuild": "^4.2.3",
"rollup-plugin-multi-input": "^1.3.0",
"svelte": "^3.38.2",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
},
"peerDependencies": {
"@sveltejs/kit": "next",
"build-esm": "^4.2.2"
}
}