@gukhanmun/wasm 0.1.0-dev.11 → 0.1.0-dev.13

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 (2) hide show
  1. package/README.md +6 -8
  2. package/package.json +2 -2
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gukhanmun/wasm",
3
- "version": "0.1.0-dev.11",
3
+ "version": "0.1.0-dev.13",
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.11+a4f62826f422ceaa9ade163304ea2f756b1dfe54"
48
+ "@gukhanmun/types": "0.1.0-dev.13+e72fbb3b19b577d65d7bf7e78d9f3ada282d1950"
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'})\""