-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.48 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
{
"name": "@neurelo/auth-next",
"publishConfig": {
"access": "public"
},
"version": "0.1.0-beta.2",
"description": "NextJS wrapper for Neurelo User Auth",
"homepage": "https://github.com/neurelo-public/neurelo-auth-next",
"repository": {
"type": "git",
"url": "https://github.com/neurelo-public/neurelo-auth-next.git"
},
"keywords": [
"neurelo",
"auth",
"next",
"nextjs"
],
"author": "Neurelo <support@neurelo.com>",
"contributors": [
"Timo von Holtz <timo@neurelo.com>"
],
"license": "MIT",
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./react": {
"import": "./dist/react.js",
"types": "./dist/react.d.ts"
}
},
"bugs": {
"url": "https://github.com/neurelo-public/neurelo-auth-next/issues"
},
"scripts": {
"build": "tsc",
"dev": "concurrently --names build,example \"tsc --watch\" \"npm run dev --prefix example\"",
"prepare": "rm -rf dist && tsc",
"prepublishOnly": "npm run build",
"publish-beta": "npm version prerelease --preid beta && npm publish --tag beta --access public"
},
"devDependencies": {
"@types/async-retry": "^1.4.8",
"@types/react": "^18.3.4",
"concurrently": "^9.0.1",
"typescript": "^5.6.2"
},
"dependencies": {
"async-retry": "^1",
"jose": "^5",
"next": "^14",
"react": "^18",
"react-cookie": "^7",
"swr": "^2.2.5"
}
}