forked from mollykannn/translate-big5-gbk
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
65 lines (65 loc) · 1.63 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
{
"name": "chinese-conv",
"description": "我就懶,無依賴的,簡繁轉換解決方案。very simple solution for lazy people, no dependencies, converting simplified to traditional and traditional to simplified.",
"version": "3.2.1",
"type": "module",
"packageManager": "[email protected]",
"exports": {
".": "./src/index.ts",
"./dist": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"./src/**",
"./dist/**"
],
"keywords": [
"Traditional",
"unicode",
"Simplified",
"conversion",
"Chinese",
"convert",
"transform"
],
"devDependencies": {
"@types/node": "20.17.6",
"@vitest/coverage-v8": "2.1.4",
"del-cli": "6.0.0",
"lefthook": "1.8.2",
"prettier": "3.3.3",
"prettier-plugin-jsdoc": "1.3.0",
"turbo": "2.2.3",
"typescript": "5.6.3",
"vite": "5.4.10",
"vite-plugin-dts": "4.3.0",
"vitest": "2.1.4"
},
"scripts": {
"prepare": "lefthook install",
"dev": "vite build -w",
"build": "vite build",
"tsc": "tsc --noEmit",
"tsc:w": "tsc --noEmit --watch --preserveWatchOutput",
"test": "vitest run",
"test:w": "vitest -w",
"test:coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aqzhyi/chinese-conv.git"
},
"author": {
"name": "Nemuke (ねむけ)",
"email": "[email protected]",
"url": "https://github.com/aqzhyi"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/aqzhyi/chinese-conv/issues"
},
"homepage": "https://github.com/aqzhyi/chinese-conv#readme",
"private": false
}