oidc-auth-client 0.0.0 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +4 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oidc-auth-client",
3
- "version": "0.0.0",
3
+ "version": "0.1.0",
4
4
  "description": "OpenID Connect (OIDC) and OAuth 2.0 client library for JavaScript applications.",
5
5
  "engines": {
6
6
  "node": ">=20.9.0"
@@ -18,7 +18,8 @@
18
18
  "test:coverage": "vitest run --coverage",
19
19
  "test:package": "node --input-type=module --eval \"import('./dist/index.js').then(m => { if (!m.UserManager) throw new Error('Missing UserManager'); console.log('package OK'); })\"",
20
20
  "docs": "typedoc",
21
- "prepublishOnly": "npm run build && npm run test:run"
21
+ "prepublishOnly": "npm run build && npm run test:run",
22
+ "prepare": "husky"
22
23
  },
23
24
  "exports": {
24
25
  ".": {
@@ -53,6 +54,7 @@
53
54
  "devDependencies": {
54
55
  "@types/jsdom": "^28.0.1",
55
56
  "@vitest/coverage-v8": "^4.1.4",
57
+ "husky": "^9.1.7",
56
58
  "jsdom": "^29.0.2",
57
59
  "typedoc": "^0.28.19",
58
60
  "typescript": "^6.0.2",