-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.03 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.03 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "closewords",
"version": "3.1.1",
"description": "A library for finding the most similar word from a list of words, supporting Japanese (including kanji). / 最も似た単語を単語群から検索する日本語(漢字含む)対応のライブラリ",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"README.md",
"README-ja.md",
"CHANGELOG.md",
"CHANGELOG-ja.md",
"LICENSE"
],
"scripts": {
"build": "tsdown && node scripts/copy-dict.cjs",
"pretest": "npm run build",
"test": "jest --config jest.config.js",
"test:build": "jest --config jest.build.config.js",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/otnc/closewords.git"
},
"keywords": [
"closeword",
"close",
"類似",
"word",
"語",
"単語",
"near",
"search",
"検索",
"string",
"文字列",
"jp",
"japan",
"japanese",
"日本語",
"morphological analysis",
"形態素解析",
"levenshtein",
"eval",
"evaluate",
"評価"
],
"author": "otoneko.",
"license": "ISC",
"bugs": {
"url": "https://github.com/otnc/closewords/issues"
},
"homepage": "https://github.com/otnc/closewords#readme",
"dependencies": {
"fast-levenshtein": "^3.0.0",
"jaro-winkler": "^0.2.8",
"kuromoji": "^0.1.2",
"wanakana": "^5.3.1"
},
"devDependencies": {
"@types/fast-levenshtein": "^0.0.4",
"@types/jaro-winkler": "^0.2.4",
"@types/jest": "^30.0.0",
"@types/kuromoji": "^0.1.3",
"@types/node": "^25.9.1",
"fs-extra": "^11.3.5",
"jest": "^30.4.2",
"ts-jest": "^29.4.10",
"tsdown": "0.21.10",
"tsx": "4.22.3",
"typescript": "6.0.3"
}
}