convert-buddy-js 0.6.0 → 0.7.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 +4 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "convert-buddy-js",
3
- "version": "0.6.0",
3
+ "version": "0.7.0",
4
4
  "description": "TypeScript wrapper for convert-buddy (Rust/WASM core)",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -36,6 +36,7 @@
36
36
  "build:wasm:node": "set CONVERT_BUDDY_WASM_TARGET=nodejs&& node ./scripts/build-wasm.mjs",
37
37
  "build:wasm": "npm run build:wasm:web && npm run build:wasm:node",
38
38
  "build": "npm run build:wasm && tsup",
39
+ "check:wasm": "node ./scripts/check-wasm.mjs",
39
40
  "test": "npm run build && node ./dist/smoke-test.js",
40
41
  "test:edge-cases": "npm run build && node --test ./dist/tests/edge-cases/*.test.js",
41
42
  "test:all": "npm run test && npm run test:edge-cases",
@@ -46,7 +47,8 @@
46
47
  "bench:competitors": "npm run build && node ./dist/bench/runner-with-competitors.js",
47
48
  "bench:competitors-comprehensive": "npm run build && node ./dist/bench/runner-competitors-comprehensive.js",
48
49
  "bench:all": "npm run bench:single-thread && npm run bench:multi-thread && npm run bench:compare && npm run bench:competitors-comprehensive",
49
- "lint": "node ./scripts/lint-placeholder.mjs"
50
+ "lint": "node ./scripts/lint-placeholder.mjs",
51
+ "prepack": "npm run build && npm run check:wasm"
50
52
  },
51
53
  "devDependencies": {
52
54
  "@types/node": "^25.0.3",