@covia/covia-sdk 1.0.0 → 1.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@covia/covia-sdk",
3
- "version": "1.0.0",
3
+ "version": "1.2.0",
4
4
  "description": "Typescript library for covia-ai",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -20,6 +20,8 @@
20
20
  "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
21
21
  "lint": "eslint src --ext .ts",
22
22
  "test": "jest",
23
+ "test:unit": "jest src/__tests__/",
24
+ "test:integration": "jest venue.test.ts",
23
25
  "prepublishOnly": "npm run build && npm test",
24
26
  "prepare": "npm run build"
25
27
  },
@@ -57,6 +59,8 @@
57
59
  "node": ">=18"
58
60
  },
59
61
  "dependencies": {
62
+ "@noble/ed25519": "^2.0.0",
63
+ "@noble/hashes": "^1.0.0",
60
64
  "did-resolver": "^4.1.0",
61
65
  "web-did-resolver": "^2.0.32"
62
66
  }