-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.45 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
{
"author": "Crossid",
"name": "@crossid/crossid-react",
"version": "0.2.5",
"description": "Openid authentication hooks for React",
"main": "index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*.{js,ts,map}"
],
"scripts": {
"build": "rimraf dist && rollup -m -c --environment NODE_ENV:production",
"start": "rollup -cw",
"test": "jest --coverage --silent",
"docs": "typedoc --out docs src/index.ts"
},
"keywords": [
"crossid",
"signin",
"login",
"openid",
"OIDC",
"OAuth2",
"PKCE",
"react"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/crossid/crossid-react.git"
},
"bugs": {
"url": "https://github.com/crossid/crossid-react/issues"
},
"dependencies": {
"@crossid/crossid-spa-js": "^0.4.4"
},
"peerDependencies": {
"react": "^17 || ^18"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-typescript": "^8.2.1",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react-hooks": "^7.0.1",
"@types/jest": "^26.0.24",
"@types/react": "^17.0.14",
"jest": "^27.0.6",
"react-dom": "^17.0.2",
"rollup": "^2.53.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.0.3",
"typedoc": "^0.21.4"
}
}