@gukhanmun/napi 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 +14 -10
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -9,8 +9,12 @@ built with napi-rs. Requires Node.js 20+. For environments other than Node.js
9
9
  Installation
10
10
  ------------
11
11
 
12
- ~~~~ sh
13
- npm install @gukhanmun/napi
12
+ ~~~~ bash
13
+ npm add @gukhanmun/napi
14
+ pnpm add @gukhanmun/napi
15
+ yarn add @gukhanmun/napi
16
+ bun add @gukhanmun/napi
17
+ deno add npm:@gukhanmun/napi
14
18
  ~~~~
15
19
 
16
20
  The package declares six optional platform dependencies
@@ -18,14 +22,14 @@ The package declares six optional platform dependencies
18
22
  etc.). npm installs only the one matching the current OS, CPU architecture, and
19
23
  libc variant. The supported targets are:
20
24
 
21
- | Target | OS | Architecture |
22
- | -------------------------- | ------------ | ------------ |
23
- | aarch64-apple-darwin | macOS | ARM64 |
24
- | x86\_64-apple-darwin | macOS | x86\_64 |
25
- | aarch64-pc-windows-msvc | Windows | ARM64 |
26
- | x86\_64-pc-windows-msvc | Windows | x86\_64 |
27
- | aarch64-unknown-linux-gnu | Linux (glibc) | ARM64 |
28
- | x86\_64-unknown-linux-gnu | Linux (glibc) | x86\_64 |
25
+ | Target | OS | Architecture |
26
+ | ------------------------- | ------------- | ------------ |
27
+ | aarch64-apple-darwin | macOS | ARM64 |
28
+ | x86\_64-apple-darwin | macOS | x86\_64 |
29
+ | aarch64-pc-windows-msvc | Windows | ARM64 |
30
+ | x86\_64-pc-windows-msvc | Windows | x86\_64 |
31
+ | aarch64-unknown-linux-gnu | Linux (glibc) | ARM64 |
32
+ | x86\_64-unknown-linux-gnu | Linux (glibc) | x86\_64 |
29
33
 
30
34
  musl Linux (Alpine, etc.) is not covered by a prebuilt binary. Build from
31
35
  source with `mise run napi-build` on those platforms.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gukhanmun/napi",
3
- "version": "0.1.0-dev.11",
3
+ "version": "0.1.0-dev.13",
4
4
  "description": "Node.js native addon (napi-rs) for the Gukhanmun hanja-to-hangul converter.",
5
5
  "type": "module",
6
6
  "exports": {
@@ -14,12 +14,12 @@
14
14
  "dist"
15
15
  ],
16
16
  "optionalDependencies": {
17
- "@gukhanmun/napi-aarch64-pc-windows-msvc": "0.1.0-dev.11+a4f62826f422ceaa9ade163304ea2f756b1dfe54",
18
- "@gukhanmun/napi-x86_64-apple-darwin": "0.1.0-dev.11+a4f62826f422ceaa9ade163304ea2f756b1dfe54",
19
- "@gukhanmun/napi-x86_64-pc-windows-msvc": "0.1.0-dev.11+a4f62826f422ceaa9ade163304ea2f756b1dfe54",
20
- "@gukhanmun/napi-aarch64-apple-darwin": "0.1.0-dev.11+a4f62826f422ceaa9ade163304ea2f756b1dfe54",
21
- "@gukhanmun/napi-aarch64-unknown-linux-gnu": "0.1.0-dev.11+a4f62826f422ceaa9ade163304ea2f756b1dfe54",
22
- "@gukhanmun/napi-x86_64-unknown-linux-gnu": "0.1.0-dev.11+a4f62826f422ceaa9ade163304ea2f756b1dfe54"
17
+ "@gukhanmun/napi-x86_64-apple-darwin": "0.1.0-dev.13+e72fbb3b19b577d65d7bf7e78d9f3ada282d1950",
18
+ "@gukhanmun/napi-aarch64-pc-windows-msvc": "0.1.0-dev.13+e72fbb3b19b577d65d7bf7e78d9f3ada282d1950",
19
+ "@gukhanmun/napi-aarch64-apple-darwin": "0.1.0-dev.13+e72fbb3b19b577d65d7bf7e78d9f3ada282d1950",
20
+ "@gukhanmun/napi-x86_64-pc-windows-msvc": "0.1.0-dev.13+e72fbb3b19b577d65d7bf7e78d9f3ada282d1950",
21
+ "@gukhanmun/napi-aarch64-unknown-linux-gnu": "0.1.0-dev.13+e72fbb3b19b577d65d7bf7e78d9f3ada282d1950",
22
+ "@gukhanmun/napi-x86_64-unknown-linux-gnu": "0.1.0-dev.13+e72fbb3b19b577d65d7bf7e78d9f3ada282d1950"
23
23
  },
24
24
  "homepage": "https://github.com/dahlia/gukhanmun",
25
25
  "bugs": "https://github.com/dahlia/gukhanmun/issues",
@@ -52,7 +52,7 @@
52
52
  "@gukhanmun/types": "*"
53
53
  },
54
54
  "devDependencies": {
55
- "@gukhanmun/types": "0.1.0-dev.11+a4f62826f422ceaa9ade163304ea2f756b1dfe54"
55
+ "@gukhanmun/types": "0.1.0-dev.13+e72fbb3b19b577d65d7bf7e78d9f3ada282d1950"
56
56
  },
57
57
  "scripts": {
58
58
  "build": "tsdown"