@gukhanmun/wasm 0.1.0-dev.12 → 0.1.0-dev.14

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
@@ -9,14 +9,12 @@ any WebAssembly-capable environment: browsers, Deno 2.0+, Node.js 20+, and Bun
9
9
  Installation
10
10
  ------------
11
11
 
12
- ~~~~ sh
13
- npm install @gukhanmun/wasm
14
- ~~~~
15
-
16
- For Deno:
17
-
18
- ~~~~ ts
19
- import { load } from "jsr:@gukhanmun/wasm";
12
+ ~~~~ bash
13
+ npm add @gukhanmun/wasm
14
+ pnpm add @gukhanmun/wasm
15
+ yarn add @gukhanmun/wasm
16
+ bun add @gukhanmun/wasm
17
+ deno add jsr:@gukhanmun/wasm
20
18
  ~~~~
21
19
 
22
20
 
package/dist/index.d.ts CHANGED
@@ -8,7 +8,7 @@
8
8
  * contract structurally. All TSDoc lives here as the single source of
9
9
  * truth for the JavaScript API.
10
10
  *
11
- * @module
11
+ * @module @gukhanmun/types
12
12
  */
13
13
  /**
14
14
  * Named configuration preset that sets orthographic and lexical defaults.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gukhanmun/wasm",
3
- "version": "0.1.0-dev.12",
3
+ "version": "0.1.0-dev.14",
4
4
  "description": "WebAssembly implementation of the Gukhanmun hanja-to-hangul converter.",
5
5
  "type": "module",
6
6
  "exports": {
@@ -45,7 +45,7 @@
45
45
  "@gukhanmun/types": "*"
46
46
  },
47
47
  "devDependencies": {
48
- "@gukhanmun/types": "0.1.0-dev.12+2585cf2de491fd0f8b06f35e0c83fe8a779280cc"
48
+ "@gukhanmun/types": "0.1.0-dev.14+e0664866e5b37361a9beed45fb9b4e6ce93a8669"
49
49
  },
50
50
  "scripts": {
51
51
  "build": "tsdown && node -e \"const fs=require('node:fs'),p=require('node:path');fs.cpSync('wasm','dist/wasm',{recursive:true,force:true,filter:(s)=>p.basename(s)!=='.gitignore'})\""