-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
80 lines (80 loc) · 2.25 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
{
"name": "react-oidc-context",
"version": "3.2.0",
"description": "OpenID Connect & OAuth2 authentication using react context api as state management",
"repository": {
"type": "git",
"url": "git+https://github.com/authts/react-oidc-context.git"
},
"homepage": "https://github.com/authts/react-oidc-context#readme",
"license": "MIT",
"main": "dist/umd/react-oidc-context.js",
"types": "dist/types/react-oidc-context.d.ts",
"exports": {
".": {
"types": "./dist/types/react-oidc-context.d.ts",
"import": "./dist/esm/react-oidc-context.js",
"require": "./dist/umd/react-oidc-context.js"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"keywords": [
"authentication",
"context-api",
"oauth2",
"oidc",
"openid",
"OpenID Connect",
"react-component"
],
"scripts": {
"build": "node scripts/build.js && npm run build-types",
"build-types": "tsc --emitDeclarationOnly && api-extractor run",
"clean": "git clean -fdX dist",
"prepack": "npm run build",
"test": "tsc -p test/tsconfig.json && jest",
"lint": "eslint --max-warnings=0 --cache .",
"prepare": "husky"
},
"peerDependencies": {
"oidc-client-ts": "^3.1.0",
"react": ">=16.14.0"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.48.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/jest": "^29.5.14",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-test-renderer": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"esbuild": "^0.24.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.4",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-testing-library": "^6.2.2",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-mock": "^29.7.0",
"lint-staged": "^15.2.10",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-test-renderer": "^18.3.1",
"ts-jest": "^29.2.5",
"tslib": "^2.8.1",
"typescript": "~5.4.2",
"yn": "^5.0.0"
},
"engines": {
"node": ">=18"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix"
}
}