-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
100 lines (100 loc) · 2.87 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@plusauth/oidc-client-js",
"description": "OpenID Connect (OIDC) and OAuth2 library for browser based JavaScript applications.",
"version": "1.7.0",
"homepage": "https://github.com/PlusAuth/oidc-client-js",
"license": "MIT",
"main": "./dist/oidc-client.esm.js",
"module": "./dist/oidc-client.esm.js",
"browser": "./dist/oidc-client.min.js",
"types": "./dist/types.d.ts",
"jsdelivr": "./dist/oidc-client.min.js",
"unpkg": "./dist/oidc-client.min.js",
"files": ["dist"],
"keywords": ["openid-connect", "oidc", "oidc client", "oauth2", "plusauth"],
"repository": {
"type": "git",
"url": "https://github.com/PlusAuth/oidc-client-js"
},
"bugs": {
"url": "https://github.com/PlusAuth/oidc-client-js/issues"
},
"packageManager": "[email protected]",
"scripts": {
"test": "jest --forceExit",
"test:coverage": "jest --coverage --forceExit",
"build": "rollup -c",
"docs": "typedoc --tsconfig tsconfig-doc.json src/index.ts",
"lint": "biome check --fix",
"release": "cross-env GITHUB_TOKEN=$GITHUB_TOKEN release-it",
"prepare": "husky install"
},
"dependencies": {
"base64-js": "^1.5.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@microsoft/api-extractor": "^7.52.3",
"@peculiar/webcrypto": "^1.5.0",
"@release-it/conventional-changelog": "^10.0.0",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@swc/core": "^1.11.18",
"@types/base64-js": "^1.5.0",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^22.14.0",
"cross-env": "^7.0.3",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsonwebtoken": "^9.0.2",
"lint-staged": "^15.5.0",
"pem": "^1.14.8",
"release-it": "^18.1.2",
"rollup": "^4.39.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-dts": "^6.2.1",
"rollup-plugin-swc3": "^0.12.1",
"ts-jest": "^29.3.1",
"typedoc": "^0.28.2",
"typescript": "^5.8.3",
"vite": "^6.2.6",
"whatwg-fetch": "^3.6.20"
},
"commitlint": {
"extends": ["@commitlint/config-conventional"],
"rules": {
"type-enum": [
2,
"always",
[
"build",
"ci",
"chore",
"dev",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"test",
"types"
]
],
"header-max-length": [0, "always", 100],
"scope-case": [0]
}
},
"lint-staged": {
"*": "biome check --fix --diagnostic-level=error --no-errors-on-unmatched --files-ignore-unknown=true --colors=off"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}