-
Notifications
You must be signed in to change notification settings - Fork 162
/
Copy pathpackage.json
86 lines (86 loc) · 2.12 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
84
85
86
{
"name": "@axa-fr/react-oidc",
"version": "7.24.1",
"private": false,
"type": "module",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"description": "OpenID Connect & OAuth authentication using react",
"repository": {
"type": "git",
"url": "https://github.com/AxaFrance/oidc-client.git"
},
"files": [
"dist",
"bin",
"src",
"README.md",
"package.json"
],
"keywords": [
"oidc",
"OpenID Connect",
"openid",
"oauth2",
"oauth",
"react",
"nextjs",
"next"
],
"scripts": {
"copy-service-worker": "cpy ./node_modules/@axa-fr/oidc-client-service-worker/dist/* ./dist --flat",
"start": "pnpm run copy-service-worker && vite",
"build": "vite build",
"serve": "vite preview",
"test": "vitest --root . --coverage",
"clean": "rimraf dist",
"postinstall": "echo 'WARNING keep sink OidcServiceWorker.js version file'",
"prepare": "pnpm run clean && pnpm run copy-service-worker && pnpm run build",
"lint": "eslint src"
},
"dependencies": {
"@axa-fr/oidc-client-service-worker": "workspace:*",
"@axa-fr/oidc-client": "workspace:*"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.1.0",
"@testing-library/user-event": "14.5.2",
"@types/react": "19.0.5",
"@vitejs/plugin-react": "4.3.4",
"@vitest/coverage-v8": "2.1.8",
"cpy": "11.1.0",
"cpy-cli": "^5.0.0",
"cross-env": "^7.0.3",
"jsdom": "26.0.0",
"msw": "2.7.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rimraf": "6.0.1",
"typescript": "5.7.3",
"vite": "6.0.7",
"vite-plugin-dts": "4.5.0",
"vitest": "2.1.8"
},
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}