-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.31 KB
/
package.json
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
{
"name": "ke2daira",
"version": "0.4.0",
"description": "A JavaScript implementation of ke2daira",
"type": "module",
"main": "./dist_cjs/index.js",
"types": "./dist_esm/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist_esm/index.d.ts",
"default": "./dist_esm/index.js"
},
"require": {
"types": "./dist_cjs/index.d.ts",
"default": "./dist_cjs/index.js"
}
}
},
"files": [
"dist_cjs",
"dist_esm",
"src"
],
"scripts": {
"clean": "tsx scripts/clean.ts",
"prebuild": "npm run clean",
"build": "tsc && tsc -p tsconfig.cjs.json && tsx scripts/generate_cjs_pkgjson.ts",
"prettier": "prettier --no-semi --tab-width 2 --write \"**/*.ts\"",
"test": "tsx --test \"test/index.ts\""
},
"repository": {
"type": "git",
"url": "https://github.com/otariidae/ke2daira.js.git"
},
"author": "otariidae",
"license": "MIT",
"bugs": {
"url": "https://github.com/otariidae/ke2daira.js/issues"
},
"homepage": "https://github.com/otariidae/ke2daira.js#readme",
"devDependencies": {
"@types/node": "^22.10.2",
"dirname-filename-esm": "^1.1.1",
"prettier": "^3.3.3",
"tsx": "^4.19.2",
"typescript": "^5.0.3"
},
"dependencies": {
"kana2mora": "^0.3.0",
"kuromojin": "^3.0.0"
}
}