-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "kanabarum",
"version": "0.3.2",
"description": "일본어 가나를 한국어 발음으로 바꿔주는 변환기",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"browser": "./dist/index.browser.js",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup --config tsup.config.ts",
"clean": "rm -rf dist",
"lint": "biome check .",
"format": "biome format --write .",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "pnpm clean && pnpm build"
},
"keywords": [
"kana",
"hangul",
"japanese",
"kuromoji",
"transliteration"
],
"author": "oyc0401",
"repository": {
"type": "git",
"url": "https://github.com/oyc0401/kanabarum"
},
"bugs": {
"url": "https://github.com/oyc0401/kanabarum/issues"
},
"homepage": "https://github.com/oyc0401/kanabarum#readme",
"license": "MIT",
"dependencies": {
"kuromoji": "^0.1.2"
},
"devDependencies": {
"@biomejs/biome": "2.0.6",
"@types/kuromoji": "^0.1.3",
"@types/node": "^20.11.5",
"path-browserify": "^1.0.1",
"tsup": "^7.2.0",
"typescript": "^5.3.3",
"vitest": "^1.2.2"
}
}