sveltekit-auth-example 5.0.1 → 5.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +3 -0
- package/README.md +1 -1
- package/package.json +24 -24
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# SvelteKit Authentication and Authorization Example
|
|
2
2
|
|
|
3
|
-
**Updated for Svelte 5 and SvelteKit 2.
|
|
3
|
+
**Updated for Svelte 5 and SvelteKit 2.19**
|
|
4
4
|
|
|
5
5
|
This is an example of how to register, authenticate, and update users and limit their access to
|
|
6
6
|
areas of the website by role (admin, teacher, student). It includes profile management and password resets via SendGrid.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sveltekit-auth-example",
|
|
3
3
|
"description": "SvelteKit Authentication Example",
|
|
4
|
-
"version": "5.0.
|
|
4
|
+
"version": "5.0.2",
|
|
5
5
|
"author": "Nate Stuyvesant",
|
|
6
6
|
"license": "https://github.com/nstuyvesant/sveltekit-auth-example/blob/master/LICENSE",
|
|
7
7
|
"repository": {
|
|
@@ -36,36 +36,36 @@
|
|
|
36
36
|
"type": "module",
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@sendgrid/mail": "^8.1.4",
|
|
39
|
-
"pg": "^8.13.
|
|
39
|
+
"pg": "^8.13.3"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@eslint/js": "^9.
|
|
43
|
-
"@sveltejs/adapter-node": "^5.2.
|
|
44
|
-
"@sveltejs/kit": "^2.
|
|
45
|
-
"@sveltejs/vite-plugin-svelte": "^
|
|
42
|
+
"@eslint/js": "^9.22.0",
|
|
43
|
+
"@sveltejs/adapter-node": "^5.2.12",
|
|
44
|
+
"@sveltejs/kit": "^2.19.0",
|
|
45
|
+
"@sveltejs/vite-plugin-svelte": "^5.0.3",
|
|
46
46
|
"@types/bootstrap": "5.2.10",
|
|
47
47
|
"@types/google.accounts": "^0.0.15",
|
|
48
|
-
"@types/jsonwebtoken": "^9.0.
|
|
49
|
-
"@types/pg": "^8.11.
|
|
48
|
+
"@types/jsonwebtoken": "^9.0.9",
|
|
49
|
+
"@types/pg": "^8.11.11",
|
|
50
50
|
"bootstrap": "^5.3.3",
|
|
51
|
-
"eslint": "^9.
|
|
52
|
-
"eslint-config-prettier": "^
|
|
53
|
-
"eslint-plugin-prettier": "^5.2.
|
|
54
|
-
"eslint-plugin-svelte": "^
|
|
55
|
-
"globals": "^
|
|
56
|
-
"google-auth-library": "^9.15.
|
|
51
|
+
"eslint": "^9.22.0",
|
|
52
|
+
"eslint-config-prettier": "^10.1.1",
|
|
53
|
+
"eslint-plugin-prettier": "^5.2.3",
|
|
54
|
+
"eslint-plugin-svelte": "^3.0.3",
|
|
55
|
+
"globals": "^16.0.0",
|
|
56
|
+
"google-auth-library": "^9.15.1",
|
|
57
57
|
"jsonwebtoken": "^9.0.2",
|
|
58
|
-
"prettier": "^3.
|
|
59
|
-
"prettier-plugin-svelte": "^3.
|
|
60
|
-
"sass": "^1.
|
|
61
|
-
"svelte": "^5.
|
|
62
|
-
"svelte-check": "^4.
|
|
58
|
+
"prettier": "^3.5.3",
|
|
59
|
+
"prettier-plugin-svelte": "^3.3.3",
|
|
60
|
+
"sass": "^1.85.1",
|
|
61
|
+
"svelte": "^5.22.6",
|
|
62
|
+
"svelte-check": "^4.1.5",
|
|
63
63
|
"tslib": "^2.8.1",
|
|
64
|
-
"typescript": "^5.
|
|
65
|
-
"typescript-eslint": "^8.
|
|
66
|
-
"vite": "^
|
|
67
|
-
"vitest": "^
|
|
64
|
+
"typescript": "^5.8.2",
|
|
65
|
+
"typescript-eslint": "^8.26.0",
|
|
66
|
+
"vite": "^6.2.1",
|
|
67
|
+
"vitest": "^3.0.8"
|
|
68
68
|
},
|
|
69
|
-
"packageManager": "yarn@4.
|
|
69
|
+
"packageManager": "yarn@4.7.0",
|
|
70
70
|
"prettier": "./prettier.config.mjs"
|
|
71
71
|
}
|