@sebastienrousseau/noyalib-wasm 0.0.12 → 0.0.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.
package/README.md CHANGED
@@ -15,9 +15,9 @@
15
15
 
16
16
  <p align="center">
17
17
  <a href="https://github.com/sebastienrousseau/noyalib/actions"><img src="https://img.shields.io/github/actions/workflow/status/sebastienrousseau/noyalib/ci.yml?style=for-the-badge&logo=github" alt="Build" /></a>
18
- <a href="https://www.npmjs.com/package/@noyalib/noyalib-wasm"><img src="https://img.shields.io/npm/v/@noyalib/noyalib-wasm?style=for-the-badge&color=fc8d62&logo=npm" alt="npm" /></a>
18
+ <a href="https://www.npmjs.com/package/@sebastienrousseau/noyalib-wasm"><img src="https://img.shields.io/npm/v/@sebastienrousseau/noyalib-wasm?style=for-the-badge&color=fc8d62&logo=npm" alt="npm" /></a>
19
19
  <a href="https://docs.rs/noyalib-wasm"><img src="https://img.shields.io/badge/docs.rs-noyalib--wasm-66c2a5?style=for-the-badge&labelColor=555555&logo=docs.rs" alt="Docs.rs" /></a>
20
- <a href="https://bundlephobia.com/package/@noyalib/noyalib-wasm"><img src="https://img.shields.io/bundlephobia/minzip/@noyalib/noyalib-wasm?style=for-the-badge&color=informational" alt="Bundle size" /></a>
20
+ <a href="https://bundlephobia.com/package/@sebastienrousseau/noyalib-wasm"><img src="https://img.shields.io/bundlephobia/minzip/@sebastienrousseau/noyalib-wasm?style=for-the-badge&color=informational" alt="Bundle size" /></a>
21
21
  <a href="https://scorecard.dev/viewer/?uri=github.com/sebastienrousseau/noyalib"><img src="https://img.shields.io/ossf-scorecard/github.com/sebastienrousseau/noyalib?style=for-the-badge&label=OpenSSF%20Scorecard&logo=openssf" alt="OpenSSF Scorecard" /></a>
22
22
  </p>
23
23
 
@@ -42,11 +42,11 @@
42
42
  ## Install
43
43
 
44
44
  ```sh
45
- npm install @noyalib/noyalib-wasm
45
+ npm install @sebastienrousseau/noyalib-wasm
46
46
  # or
47
- pnpm add @noyalib/noyalib-wasm
47
+ pnpm add @sebastienrousseau/noyalib-wasm
48
48
  # or
49
- yarn add @noyalib/noyalib-wasm
49
+ yarn add @sebastienrousseau/noyalib-wasm
50
50
  ```
51
51
 
52
52
  Or build from source against any wasm-pack target:
@@ -78,7 +78,7 @@ import init, {
78
78
  getPath,
79
79
  merge,
80
80
  WasmDocument,
81
- } from "@noyalib/noyalib-wasm";
81
+ } from "@sebastienrousseau/noyalib-wasm";
82
82
 
83
83
  await init(); // load the WASM blob
84
84
 
@@ -234,7 +234,7 @@ linking the published bundle to the GitHub Actions run that
234
234
  produced it. Verify via:
235
235
 
236
236
  ```sh
237
- npm view @noyalib/noyalib-wasm provenance
237
+ npm view @sebastienrousseau/noyalib-wasm provenance
238
238
  ```
239
239
 
240
240
  The underlying `.wasm` is also signed with cosign keyless
@@ -320,7 +320,7 @@ consume the `bundler` target.
320
320
  - **Bundling (Vite, Webpack, Next.js, Cloudflare Workers, Deno, Bun)**:
321
321
  [`doc/bundling.md`](https://github.com/sebastienrousseau/noyalib/blob/main/crates/noyalib-wasm/doc/bundling.md)
322
322
  - **npm package**:
323
- <https://www.npmjs.com/package/@noyalib/noyalib-wasm>
323
+ <https://www.npmjs.com/package/@sebastienrousseau/noyalib-wasm>
324
324
  - **API reference (rustdoc)**: <https://docs.rs/noyalib-wasm>
325
325
  - **Workspace README**:
326
326
  <https://github.com/sebastienrousseau/noyalib#readme>
Binary file
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "Sebastien Rousseau <sebastian.rousseau@gmail.com>"
6
6
  ],
7
7
  "description": "WebAssembly (wasm-bindgen) bindings for the noyalib YAML library — browser-ready parse / serialise / lossless edit",
8
- "version": "0.0.12",
8
+ "version": "0.0.16",
9
9
  "license": "MIT OR Apache-2.0",
10
10
  "repository": {
11
11
  "type": "git",
@@ -30,8 +30,5 @@
30
30
  "wasm-bindgen",
31
31
  "browser",
32
32
  "noyalib"
33
- ],
34
- "publishConfig": {
35
- "access": "public"
36
- }
33
+ ]
37
34
  }