-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.24 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
{
"name": "@tykok/cedict-dictionary",
"version": "2.7.14",
"description": "The Cedict dictionary get and format the cedict to a JSON file",
"main": "lib/index.js",
"files": [
"lib/**/*",
"data/cedict.json"
],
"scripts": {
"build": "npx tsc",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"postversion": "git push && git push --tags",
"version": "npm run format && git add .",
"build:watch": "tsc-watch --onFailure \"echo Something gone wrong... Fix it, or report a bug on $npm_package_repository_url\" --onSuccess \"echo All it's OK !\"",
"start": "npm run build && node lib/index.js",
"format": "prettier --write \"src/**/*.ts\"",
"test": "jest --config jestconfig.json",
"lint": "tslint -p tsconfig.json",
"get-cedict": "node lib/format-cedict.js",
"rn": "release-note-now",
"get-version": "echo $npm_package_version",
"dev:docs": "mkdocs serve --watch docs",
"build:docs": "mkdocs build --clean --site-dir static/docs && rm static/docs/img/favicon.ico && cp static/favicon.ico static/docs/img/"
},
"repository": {
"type": "git",
"url": "https://github.com/Tykok/cedict-chinese-transformation"
},
"author": {
"name": "Tykok",
"email": "treportelie12@gmail.com",
"url": "https://github.com/Tykok"
},
"bugs": {
"url": "https://github.com/Tykok/cedict-chinese-transformation/issues/new?assignees=octocat&labels=bug&template=bug.yml&title=Fix%3A+"
},
"homepage": "https://tykok.github.io/cedict-chinese-transformation/",
"license": "MIT",
"devDependencies": {
"@pictarine/release-note-now": "^1.0.8",
"@types/jest": "^29.4.0",
"@types/node": "^22.4.1",
"@types/superagent": "^8.1.8",
"jest": "^29.4.0",
"prettier": "^3.3.3",
"ts-jest": "^29.0.5",
"tsc-watch": "^6.0.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.5.4"
},
"dependencies": {
"extract-zip": "^2.0.1",
"fstream": "^1.0.12",
"superagent": "^10.0.2",
"unzip": "^0.1.11"
},
"keywords": [
"cedict",
"chinese",
"pinyin",
"dictionary",
"learning",
"english",
"language",
"translate",
"node",
"typescript"
]
}