forked from nowaythatworked/auth-astro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 1.87 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
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "auth-astro",
"description": "The easiest way to add authentication to your Astro project!",
"version": "4.2.0",
"main": "./index.ts",
"types": "module.d.ts",
"engines": {
"node": ">=17.4"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nowaythatworked/auth-astro.git"
},
"author": "nowaythatworked <[email protected]>",
"contributors": [
"Otterlord <[email protected]>",
"tajkirkpatrick"
],
"scripts": {
"dev": "tsc --watch",
"build": "tsc",
"format": "prettier --config .prettierrc --ignore-path .prettierignore -w .",
"lint": "eslint .",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"@auth/core": "^0.37.4",
"astro": ">=4.0.0"
},
"devDependencies": {
"@auth/core": "^0.37.4",
"@types/node": "^18.17.1",
"@types/set-cookie-parser": "^2.4.2",
"astro": "^5.0.0",
"eslint": "^8.0.0",
"next-auth": "^4.24.10",
"prettier": "^2.8.6",
"prettier-plugin-astro": "^0.8.0",
"typescript": "^5.6.2"
},
"dependencies": {
"@astrojs/mdx": "^4.0.8",
"@astrojs/partytown": "^2.1.3",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/tailwind": "^6.0.0",
"@astrolib/analytics": "^0.6.1",
"@astrolib/seo": "^1.0.0-beta.8",
"@fontsource-variable/inter": "^5.1.1",
"astro-compress": "^2.3.6",
"astro-icon": "^1.1.5",
"express": "^4.21.2",
"express-openid-connect": "^2.17.1",
"limax": "^4.1.0",
"lodash.merge": "^4.6.2",
"reading-time": "^1.5.0",
"set-cookie-parser": "^2.5.1",
"tailwindcss": "^4.0.6",
"unpic": "^4.1.2"
},
"files": [
"dist",
"src",
"index.ts",
"module.d.ts"
],
"keywords": [
"astro",
"auth",
"authentication",
"integration",
"@auth",
"@auth/core",
"authjs",
"jwt",
"oauth",
"astro-auth",
"astro-integration",
"astro-component",
"withastro"
],
"packageManager": "[email protected]+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}