@enbox/crypto 0.0.7 → 0.0.8

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@enbox/crypto",
3
- "version": "0.0.7",
4
- "description": "Web5 cryptographic library",
3
+ "version": "0.0.8",
4
+ "description": "Enbox cryptographic library",
5
5
  "type": "module",
6
6
  "main": "./dist/esm/index.js",
7
7
  "module": "./dist/esm/index.js",
@@ -15,6 +15,8 @@
15
15
  "lint:fix": "eslint . --fix",
16
16
  "test:node": "bun test .test.ts",
17
17
  "test:node:coverage": "bun test --coverage --coverage-reporter=text --coverage-reporter=lcov --coverage-dir=coverage .test.ts",
18
+ "test:fuzz": "FAST_CHECK_NUM_RUNS=200 bun test tests/fuzz/",
19
+ "test:fuzz-long": "FAST_CHECK_NUM_RUNS=10000 bun test tests/fuzz/",
18
20
  "test:browser": "bunx --bun vitest --config vitest.browser.config.ts --run",
19
21
  "test:browser:coverage": "bunx --bun vitest --config vitest.browser.config.ts --run --coverage --coverage.provider=istanbul"
20
22
  },
@@ -68,7 +70,7 @@
68
70
  "bun": ">=1.0.0"
69
71
  },
70
72
  "dependencies": {
71
- "@enbox/common": "0.0.6",
73
+ "@enbox/common": "0.0.7",
72
74
  "@noble/ciphers": "0.5.3",
73
75
  "@noble/curves": "1.3.0",
74
76
  "@noble/hashes": "1.4.0",
@@ -81,6 +83,7 @@
81
83
  "@vitest/browser-playwright": "4.0.18",
82
84
  "@vitest/coverage-istanbul": "4.0.18",
83
85
  "eslint": "9.7.0",
86
+ "fast-check": "4.5.3",
84
87
  "rimraf": "5.0.7",
85
88
  "typescript": "5.5.4",
86
89
  "vitest": "4.0.18"