@gukhanmun/wasm 0.1.0-dev.0

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.
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "gukhanmun-wasm",
3
+ "type": "module",
4
+ "collaborators": [
5
+ "Hong Minhe (洪 民憙) <hong@minhee.org>"
6
+ ],
7
+ "description": "WebAssembly binding for Gukhanmun via wasm-bindgen.",
8
+ "version": "0.1.0",
9
+ "license": "GPL-3.0-only",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://github.com/dahlia/gukhanmun"
13
+ },
14
+ "files": [
15
+ "gukhanmun_wasm_bg.wasm",
16
+ "gukhanmun_wasm.js",
17
+ "gukhanmun_wasm.d.ts"
18
+ ],
19
+ "main": "gukhanmun_wasm.js",
20
+ "homepage": "https://github.com/dahlia/gukhanmun",
21
+ "types": "gukhanmun_wasm.d.ts",
22
+ "sideEffects": [
23
+ "./snippets/*"
24
+ ]
25
+ }
package/package.json ADDED
@@ -0,0 +1,53 @@
1
+ {
2
+ "name": "@gukhanmun/wasm",
3
+ "version": "0.1.0-dev.0",
4
+ "description": "WebAssembly implementation of the Gukhanmun hanja-to-hangul converter.",
5
+ "type": "module",
6
+ "exports": {
7
+ ".": {
8
+ "types": "./dist/index.d.ts",
9
+ "import": "./dist/index.js",
10
+ "default": "./dist/index.js"
11
+ }
12
+ },
13
+ "files": [
14
+ "dist"
15
+ ],
16
+ "homepage": "https://github.com/dahlia/gukhanmun",
17
+ "bugs": "https://github.com/dahlia/gukhanmun/issues",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://github.com/dahlia/gukhanmun.git",
21
+ "directory": "packages/wasm"
22
+ },
23
+ "license": "GPL-3.0-only",
24
+ "author": {
25
+ "name": "Hong Minhe (洪 民憙)",
26
+ "email": "hong@minhee.org",
27
+ "url": "https://hongminhee.org/"
28
+ },
29
+ "funding": "https://github.com/sponsors/dahlia",
30
+ "engines": {
31
+ "node": ">=20",
32
+ "bun": ">=1.0",
33
+ "deno": ">=2.0"
34
+ },
35
+ "sideEffects": false,
36
+ "keywords": [
37
+ "korean",
38
+ "hanja",
39
+ "hangul",
40
+ "typography",
41
+ "wasm",
42
+ "webassembly"
43
+ ],
44
+ "peerDependencies": {
45
+ "@gukhanmun/types": "*"
46
+ },
47
+ "devDependencies": {
48
+ "@gukhanmun/types": "0.1.0-dev.0"
49
+ },
50
+ "scripts": {
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'})\""
52
+ }
53
+ }