forked from AxaFrance/oidc-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.67 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.67 KB
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
{
"name": "@axa-fr/oidc-client",
"version": "7.22.22",
"private": false,
"type": "module",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"description": "OpenID Connect & OAuth authentication using native javascript only, compatible with angular, react, vue, svelte, next, etc.",
"files": [
"dist",
"bin",
"src",
"README.md",
"package.json",
"package-lock.json"
],
"repository": {
"type": "git",
"url": "https://github.com/AxaFrance/oidc-client.git"
},
"dependencies": {
"@axa-fr/oidc-client-service-worker": "workspace:*"
},
"devDependencies": {
"@testing-library/dom": "10.1.0",
"@testing-library/jest-dom": "6.4.5",
"@testing-library/react": "15.0.7",
"@vitest/coverage-v8": "1.6.0",
"cpy": "11.0.1",
"cpy-cli": "^5.0.0",
"rimraf": "5.0.7",
"typescript": "5.4.5",
"vite": "5.2.11",
"vite-plugin-dts": "3.9.1",
"vitest": "1.6.0"
},
"keywords": [
"oidc",
"OpenID Connect",
"openid",
"oauth2",
"oauth",
"vanilla",
"vanillajs"
],
"scripts": {
"clean": "rimraf dist",
"copy-service-worker": "cpy ./node_modules/@axa-fr/oidc-client-service-worker/dist/OidcTrustedDomains.js ./node_modules/@axa-fr/oidc-client-service-worker/dist/OidcServiceWorker.js ./dist",
"build": "tsc && vite build",
"test": "vitest --root . --coverage",
"prepare": "pnpm run clean && pnpm run copy-service-worker && pnpm run build",
"postinstall": "echo 'WARNING keep sink OidcServiceWorker.js version file'"
},
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}