forked from transcrobes/opencc-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.31 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.31 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
{
"name": "@odict/opencc-js",
"version": "1.2.0",
"description": "The JavaScript version of Open Chinese Convert (OpenCC)",
"type": "module",
"files": [
"dist",
"README.md"
],
"exports": {
"./cn2t": {
"import": "./dist/src/cn2t.js",
"types": "./dist/src/cn2t.d.ts"
},
"./t2cn": {
"import": "./dist/src/t2cn.js",
"types": "./dist/src/t2cn.d.ts"
},
".": {
"import": "./dist/src/index.js",
"types": "./dist/src/index.d.ts"
}
},
"scripts": {
"prepare": "bun x husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheOpenDictionary/opencc-js.git"
},
"author": "The Open Dictionary",
"keywords": [
"opencc",
"Chinese",
"unicode",
"Chinese Language",
"Simplified Chinese",
"Traditional Chinese",
"chinese-language",
"chinese-characters",
"traditional-chinese",
"simplified-chinese"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/TheOpenDictionary/opencc-js/issues"
},
"homepage": "https://github.com/TheOpenDictionary/opencc-js",
"devDependencies": {
"@biomejs/biome": "^2.2.6",
"@types/bun": "^1.3.0",
"bunup": "^0.14.20",
"husky": "^9.1.7",
"typescript": "^5.9.3",
"@typescript/native-preview": "^7.0.0-dev.20251015.1"
}
}