@cardano-sdk/crypto 0.1.15 → 0.1.16

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 (41) hide show
  1. package/dist/cjs/Bip32/Bip32PrivateKey.d.ts.map +1 -1
  2. package/dist/cjs/Bip32/Bip32PrivateKey.js.map +1 -1
  3. package/dist/cjs/Bip32/Bip32PublicKey.d.ts +2 -1
  4. package/dist/cjs/Bip32/Bip32PublicKey.d.ts.map +1 -1
  5. package/dist/cjs/Bip32/Bip32PublicKey.js +5 -0
  6. package/dist/cjs/Bip32/Bip32PublicKey.js.map +1 -1
  7. package/dist/cjs/Bip32Ed25519.d.ts.map +1 -1
  8. package/dist/cjs/Ed25519e/Ed25519KeyHash.d.ts.map +1 -1
  9. package/dist/cjs/Ed25519e/Ed25519KeyHash.js.map +1 -1
  10. package/dist/cjs/Ed25519e/Ed25519PrivateKey.d.ts.map +1 -1
  11. package/dist/cjs/Ed25519e/Ed25519PrivateKey.js.map +1 -1
  12. package/dist/cjs/Ed25519e/Ed25519PublicKey.d.ts.map +1 -1
  13. package/dist/cjs/Ed25519e/Ed25519PublicKey.js.map +1 -1
  14. package/dist/cjs/Ed25519e/Ed25519Signature.d.ts.map +1 -1
  15. package/dist/cjs/Ed25519e/Ed25519Signature.js.map +1 -1
  16. package/dist/cjs/hexTypes.d.ts +3 -0
  17. package/dist/cjs/hexTypes.d.ts.map +1 -1
  18. package/dist/cjs/hexTypes.js +4 -1
  19. package/dist/cjs/hexTypes.js.map +1 -1
  20. package/dist/cjs/tsconfig.tsbuildinfo +1 -1
  21. package/dist/esm/Bip32/Bip32PrivateKey.d.ts.map +1 -1
  22. package/dist/esm/Bip32/Bip32PrivateKey.js.map +1 -1
  23. package/dist/esm/Bip32/Bip32PublicKey.d.ts +2 -1
  24. package/dist/esm/Bip32/Bip32PublicKey.d.ts.map +1 -1
  25. package/dist/esm/Bip32/Bip32PublicKey.js +7 -2
  26. package/dist/esm/Bip32/Bip32PublicKey.js.map +1 -1
  27. package/dist/esm/Bip32Ed25519.d.ts.map +1 -1
  28. package/dist/esm/Ed25519e/Ed25519KeyHash.d.ts.map +1 -1
  29. package/dist/esm/Ed25519e/Ed25519KeyHash.js.map +1 -1
  30. package/dist/esm/Ed25519e/Ed25519PrivateKey.d.ts.map +1 -1
  31. package/dist/esm/Ed25519e/Ed25519PrivateKey.js.map +1 -1
  32. package/dist/esm/Ed25519e/Ed25519PublicKey.d.ts.map +1 -1
  33. package/dist/esm/Ed25519e/Ed25519PublicKey.js.map +1 -1
  34. package/dist/esm/Ed25519e/Ed25519Signature.d.ts.map +1 -1
  35. package/dist/esm/Ed25519e/Ed25519Signature.js.map +1 -1
  36. package/dist/esm/hexTypes.d.ts +3 -0
  37. package/dist/esm/hexTypes.d.ts.map +1 -1
  38. package/dist/esm/hexTypes.js +2 -0
  39. package/dist/esm/hexTypes.js.map +1 -1
  40. package/dist/esm/tsconfig.tsbuildinfo +1 -1
  41. package/package.json +9 -10
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cardano-sdk/crypto",
3
- "version": "0.1.15",
3
+ "version": "0.1.16",
4
4
  "description": "Cryptographic types and functions for Cardano. Warning: The libsodium crypto provider has not yet been audited. Use at this stage is at own risk",
5
5
  "engines": {
6
6
  "node": ">=16.20.2"
@@ -24,17 +24,17 @@
24
24
  "build:cjs": "tsc --build src",
25
25
  "build": "run-s build:cjs build:esm module-fixup",
26
26
  "circular-deps:check": "madge --circular dist/cjs",
27
- "module-fixup": "shx cp ../../build/cjs-package.json ./dist/cjs/package.json && cp ../../build/esm-package.json ./dist/esm/package.json",
28
- "tscNoEmit": "shx echo typescript --noEmit command not implemented yet",
29
- "cleanup:dist": "shx rm -rf dist",
30
- "cleanup:nm": "shx rm -rf node_modules",
27
+ "module-fixup": "cp ../../build/cjs-package.json ./dist/cjs/package.json && cp ../../build/esm-package.json ./dist/esm/package.json",
28
+ "tscNoEmit": "echo typescript --noEmit command not implemented yet",
29
+ "cleanup:dist": "rm -rf dist",
30
+ "cleanup:nm": "rm -rf node_modules",
31
31
  "cleanup": "run-s cleanup:dist cleanup:nm",
32
32
  "lint": "eslint -c ../../complete.eslintrc.js \"src/**/*.ts\" \"test/**/*.ts\"",
33
33
  "lint:fix": "yarn lint --fix",
34
34
  "test": "jest -c ./jest.config.js",
35
35
  "test:build:verify": "tsc --build ./test",
36
- "test:e2e": "shx echo 'test:e2e' command not implemented yet",
37
- "coverage": "shx echo No coverage report for this package",
36
+ "test:e2e": "echo 'test:e2e' command not implemented yet",
37
+ "coverage": "echo No coverage report for this package",
38
38
  "prepack": "yarn build"
39
39
  },
40
40
  "devDependencies": {
@@ -48,7 +48,6 @@
48
48
  "jest": "^28.1.3",
49
49
  "madge": "^5.0.1",
50
50
  "npm-run-all": "^4.1.5",
51
- "shx": "^0.3.3",
52
51
  "ts-jest": "^28.0.7",
53
52
  "typescript": "^4.7.4"
54
53
  },
@@ -69,7 +68,7 @@
69
68
  }
70
69
  },
71
70
  "dependencies": {
72
- "@cardano-sdk/util": "~0.14.2",
71
+ "@cardano-sdk/util": "~0.14.3",
73
72
  "blake2b": "^2.1.4",
74
73
  "bn.js": "^5.2.1",
75
74
  "i": "^0.3.7",
@@ -86,5 +85,5 @@
86
85
  "LICENSE",
87
86
  "NOTICE"
88
87
  ],
89
- "gitHead": "a7314af0d95b4ad530492f35375885cd2f3d6fb5"
88
+ "gitHead": "02a0eff7b7b7a3b98b42fd19b2ae85cfc4e7d87f"
90
89
  }