-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
69 lines (69 loc) · 1.67 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
{
"name": "to-jyutping",
"version": "3.1.1",
"description": "粵語拼音自動標註工具 Cantonese Pronunciation Automatic Labeling Tool",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"browser": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"browser": "./dist/index.js"
}
},
"files": [
"src",
"dist",
"!src/global.d.ts",
"!src/trie.txt"
],
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"test": "bun test",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CanCLID/to-jyutping.git"
},
"keywords": [
"cantonese",
"chinese",
"chinese-characters",
"jyutping",
"linguistics",
"natural-language-processing",
"nlp",
"romanization",
"simplified-chinese",
"traditional-chinese"
],
"author": "CanCLID",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/CanCLID/to-jyutping/issues"
},
"homepage": "https://github.com/CanCLID/to-jyutping#readme",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@types/bun": "^1.1.10",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript-bun": "^0.0.104",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-no-array-concat": "^0.1.2",
"rollup": "^4.18.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-modify": "^3.0.0",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.5.3"
}
}