-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
48 lines (48 loc) · 1.21 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
{
"name": "opencc-js",
"version": "1.0.5",
"description": "The JavaScript version of Open Chinese Convert (OpenCC)",
"main": "./dist/umd/full.js",
"type": "module",
"exports": {
".": {
"import": "./dist/esm/full.js",
"require": "./dist/umd/full.js"
},
"./cn2t": "./dist/esm/cn2t.js",
"./t2cn": "./dist/esm/t2cn.js",
"./preset": "./dist/esm-lib/preset/full.js",
"./*": "./dist/esm-lib/*.js"
},
"scripts": {
"build": "node build.js && rollup -c",
"test": "node test/node/basic.mjs && node test/node/basic.cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nk2028/opencc-js.git"
},
"author": "The nk2028 Project",
"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/nk2028/opencc-js/issues"
},
"homepage": "https://github.com/nk2028/opencc-js#readme",
"devDependencies": {
"chai": "~4.3.4",
"opencc-data": "~1.0.7",
"rollup-plugin-generate-package-json": "^3.2.0"
}
}