@trust-proto/auth-node 0.1.0 → 0.2.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 +9 -10
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trust-proto/auth-node",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "Liberion Auth Backend SDK with post-quantum cryptography",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -42,7 +42,7 @@
42
42
  "dependencies": {
43
43
  "@msgpack/msgpack": "^3.1.2",
44
44
  "@noble/post-quantum": "^0.5.2",
45
- "ethers": "^6.14.0",
45
+ "ethers": "^6.16.0",
46
46
  "libsodium-wrappers": "^0.7.15",
47
47
  "uuid": "^13.0.0",
48
48
  "ws": "^8.18.2"
@@ -51,10 +51,13 @@
51
51
  "@types/libsodium-wrappers": "^0.7.14",
52
52
  "@types/node": "^24.10.1",
53
53
  "@types/ws": "^8.5.0",
54
- "@vitest/coverage-v8": "^4.0.14",
54
+ "@vitest/coverage-v8": "^4.0.15",
55
55
  "tsup": "^8.0.0",
56
56
  "typescript": "^5.7.0",
57
- "vitest": "^4.0.14"
57
+ "vitest": "^4.0.15"
58
+ },
59
+ "publishConfig": {
60
+ "access": "public"
58
61
  },
59
62
  "scripts": {
60
63
  "build": "tsup src/index.ts --format esm --dts --clean",
@@ -64,10 +67,6 @@
64
67
  "test:coverage": "vitest --run --coverage",
65
68
  "lint": "tsc --noEmit",
66
69
  "typecheck": "tsc --noEmit",
67
- "clean": "rm -rf dist coverage",
68
- "prepublishOnly": "pnpm run build"
69
- },
70
- "publishConfig": {
71
- "access": "public"
70
+ "clean": "rm -rf dist coverage"
72
71
  }
73
- }
72
+ }