-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.37 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.37 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
{
"name": "seimei-split",
"version": "0.2.0",
"description": "Split Japanese full names into family name and given name",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./core": {
"types": "./dist/core.d.ts",
"default": "./dist/core.js"
}
},
"files": [
"dist",
"LICENSE",
"LICENSES",
"README.md",
"README.en.md"
],
"scripts": {
"generate:data": "tsx internal/unidic/extract.ts && tsx internal/unidic/pack.ts",
"build": "vite build",
"test": "vitest run",
"build:docs": "vite build --config vite.config.docs.ts",
"build:docs-site": "cd docs-site && npm run build",
"prepack": "npm run generate:data && npm run build"
},
"keywords": [
"japanese",
"name",
"split",
"parser",
"seimei",
"kanji"
],
"license": "(MIT AND BSD-3-Clause)",
"repository": {
"type": "git",
"url": "git+https://github.com/tk1024/seimei-split.git"
},
"bugs": {
"url": "https://github.com/tk1024/seimei-split/issues"
},
"homepage": "https://github.com/tk1024/seimei-split#readme",
"devDependencies": {
"@types/node": "^25.5.0",
"tsx": "^4.19.0",
"typescript": "^5.9.3",
"vite": "^8.0.1",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.1.0"
}
}