@darkauth/client 1.22.1 → 1.22.2

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 (2) hide show
  1. package/README.md +6 -6
  2. package/package.json +11 -12
package/README.md CHANGED
@@ -19,7 +19,7 @@ The client supports both:
19
19
  ## Installation
20
20
 
21
21
  ```bash
22
- npm install @DarkAuth/client
22
+ pnpm install @DarkAuth/client
23
23
  ```
24
24
 
25
25
  ## Quick Start
@@ -367,17 +367,17 @@ This library requires a modern browser with support for:
367
367
 
368
368
  ```bash
369
369
  # Install dependencies
370
- npm install
370
+ pnpm install
371
371
 
372
372
  # Build the package
373
- npm run build
373
+ pnpm build
374
374
 
375
375
  # Type checking
376
- npm run typecheck
376
+ pnpm typecheck
377
377
 
378
378
  # Linting and formatting
379
- npm run lint
380
- npm run format
379
+ pnpm lint
380
+ pnpm format
381
381
  ```
382
382
 
383
383
  ## License
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@darkauth/client",
3
- "version": "1.22.1",
3
+ "version": "1.22.2",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "directory": "packages/darkauth-client",
@@ -15,23 +15,22 @@
15
15
  "LICENSE",
16
16
  "README.md"
17
17
  ],
18
+ "dependencies": {
19
+ "jose": "^6.2.3"
20
+ },
21
+ "devDependencies": {
22
+ "@biomejs/biome": "^2.5.0",
23
+ "@types/node": "^25.9.3",
24
+ "typescript": "^6.0.3"
25
+ },
18
26
  "scripts": {
19
27
  "build": "tsc",
20
- "test": "npm run build && node --test --test-reporter=dot --experimental-specifier-resolution=node",
21
- "prepack": "npm run build",
28
+ "test": "pnpm run build && node --test --test-reporter=dot --experimental-specifier-resolution=node",
22
29
  "typecheck": "tsc --noEmit",
23
- "prepare": "tsc",
24
30
  "format": "biome format --write .",
25
31
  "lint": "biome lint .",
26
32
  "check": "biome check .",
27
33
  "check:fix": "biome check --write .",
28
34
  "tidy": "biome check --write . && biome lint --write ."
29
- },
30
- "dependencies": {
31
- "jose": "^6.1.3"
32
- },
33
- "devDependencies": {
34
- "typescript": "^5.9.3",
35
- "@biomejs/biome": "^2.3.11"
36
35
  }
37
- }
36
+ }