polar_codec_wasm 1.0.0 → 1.0.2

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,13 +1,21 @@
1
1
  {
2
2
  "name": "polar_codec_wasm",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "author": "Aluria",
5
- "description": "(Rust bindings) A Rust implementation of polar codes, a class of error-correcting codes that achieve the capacity of symmetric binary-input discrete memoryless channels.",
5
+ "description": "Zero-dependency WebAssembly implementation of Polar Codes (FEC) for Node.js, browsers, and Deno, powered by Rust.",
6
6
  "keywords": [
7
7
  "polar codes",
8
+ "fec",
9
+ "forward-error-correction",
10
+ "channel-coding",
8
11
  "error-correcting codes",
12
+ "5g",
13
+ "crc",
9
14
  "wasm",
15
+ "webassembly",
10
16
  "rust",
17
+ "typescript",
18
+ "zero-dependency",
11
19
  "browser",
12
20
  "node"
13
21
  ],
@@ -41,16 +49,17 @@
41
49
  "files": [
42
50
  "dist",
43
51
  "README.md",
44
- "LICENSE-MIT",
45
- "LICENSE-APACHE"
52
+ "LICENSE"
46
53
  ],
54
+ "scripts": {
55
+ "build": "node ./scripts/build.ts",
56
+ "examples": "node ./examples/basic.ts && node ./examples/parameters.ts && node ./examples/noise.ts && node ./examples/performance.ts",
57
+ "test": "pnpm run examples",
58
+ "prepublishOnly": "pnpm run build"
59
+ },
47
60
  "devDependencies": {
48
61
  "@types/node": "^26.0.1",
49
62
  "tsdown": "^0.22.3",
50
63
  "typescript": "^6.0.3"
51
- },
52
- "scripts": {
53
- "build": "node ./scripts/build.ts",
54
- "examples": "node ./examples/basic.ts && node ./examples/parameters.ts && node ./examples/noise.ts && node ./examples/performanec.ts"
55
64
  }
56
65
  }