kanabarum 0.3.1 → 0.3.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kanabarum",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "일본어 가나를 한국어 발음으로 바꿔주는 변환기",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -18,6 +18,15 @@
18
18
  "files": [
19
19
  "dist"
20
20
  ],
21
+ "scripts": {
22
+ "build": "tsup --config tsup.config.ts",
23
+ "clean": "rm -rf dist",
24
+ "lint": "biome check .",
25
+ "format": "biome format --write .",
26
+ "test": "vitest run",
27
+ "test:watch": "vitest",
28
+ "prepublishOnly": "pnpm clean && pnpm build"
29
+ },
21
30
  "keywords": [
22
31
  "kana",
23
32
  "hangul",
@@ -42,16 +51,9 @@
42
51
  "@biomejs/biome": "2.0.6",
43
52
  "@types/kuromoji": "^0.1.3",
44
53
  "@types/node": "^20.11.5",
54
+ "path-browserify": "^1.0.1",
45
55
  "tsup": "^7.2.0",
46
56
  "typescript": "^5.3.3",
47
57
  "vitest": "^1.2.2"
48
- },
49
- "scripts": {
50
- "build": "tsup --config tsup.config.ts",
51
- "clean": "rm -rf dist",
52
- "lint": "biome check .",
53
- "format": "biome format --write .",
54
- "test": "vitest run",
55
- "test:watch": "vitest"
56
58
  }
57
- }
59
+ }