-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
85 lines (85 loc) · 2.33 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
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
{
"name": "tongwen-core",
"version": "5.0.0-beta-1",
"description": "A fast converter between Traditional Chinese and Simplified Chinese",
"homepage": "https://github.com/tongwentang/tongwen-core",
"license": "MIT",
"author": "t7yang <[email protected]> (https://github.com/t7yang)",
"contributors": [
"t7yang <[email protected]> (https://github.com/t7yang)",
"cookwu (https://github.com/cookwu)",
"softcup (https://github.com/softcup)",
"ettoolong (https://github.com/ettoolong)"
],
"keywords": [
"tongwen",
"new tongwentang",
"simplified chinese",
"traditional chinese",
"converter"
],
"repository": {
"type": "git",
"url": "[email protected]:tongwentang/tongwen-core.git"
},
"bugs": {
"url": "https://github.com/tongwentang/tongwen-core/issues"
},
"type": "module",
"module": "./converter/index.js",
"types": "./converter/index.d.ts",
"sideEffect": false,
"engines": {
"node": ">=20"
},
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/converter/index.d.ts",
"import": "./dist/converter/index.js",
"require": "./dist/converter/index.cjs",
"default": "./dist/converter/index.js"
},
"./dictionaries": {
"types": "./dist/dictionary/index.d.ts",
"import": "./dist/dictionary/index.js",
"require": "./dist/dictionary/index.cjs",
"default": "./dist/dictionary/index.js"
},
"./walker": {
"types": "./dist/walker/index.d.ts",
"import": "./dist/walker/index.js",
"require": "./dist/walker/index.cjs",
"default": "./dist/walker/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"test": "node --import tsx --test src/**/*.test.ts",
"test:tsc": "tsc --noEmit",
"update": "ncu -i --format=group",
"format": "prettier --write **/*.* --ignore-unknown",
"build": "tsup",
"release": "standard-version -t \"\"",
"prepare": "husky"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,css,md}": [
"prettier --write --ignore-unknown"
]
},
"devDependencies": {
"@types/jsdom": "^21.1.7",
"@types/node": "^22.5.4",
"husky": "^9.1.5",
"jsdom": "^25.0.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"standard-version": "^9.5.0",
"tsup": "^8.2.4",
"tsx": "^4.19.0",
"typescript": "^5.5.4"
}
}