forked from hellocoop/packages-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.43 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
{
"name": "@hellocoop/nextjs",
"version": "1.3.3",
"description": "Next.js SDK for Hellō https://hello.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/hellocoop/packages.git"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/"
],
"keywords": [
"nextjs",
"next",
"next.js",
"hello",
"openid",
"oidc",
"sso"
],
"author": {
"name": "Hello Identity Co-op",
"email": "[email protected]",
"url": "https://hello.coop"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/hellocoop/packages/issues"
},
"homepage": "https://github.com/hellocoop/packages#readme",
"scripts": {
"watch": "tsc --watch --declaration",
"build": "npm run build:clean && npm run build:src",
"build:clean": "rimraf dist/",
"build:src": "tsc --declaration"
},
"peerDependencies": {
"next": ">=10",
"react": ">=17",
"react-dom": ">=17"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.2",
"@types/cookie": "^0.5.2",
"@types/cors": "^2.8.14",
"@types/react": "^18.2.21",
"eslint-config-next": "^13.5.1",
"next": "^13.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.1",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@hellocoop/utils": "latest",
"cookie": "^0.5.0",
"cors": "^2.8.5",
"swr": "^2.2.2"
}
}