forked from yinyanfr/ecdict
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 906 Bytes
/
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
{
"name": "ecdict",
"version": "0.0.4",
"description": "JavaScript interface for ECDICT",
"main": "dist/ecdict.js",
"scripts": {
"tsc": "tsc",
"start": "tsc && node dist/ecdict.js",
"build": "tsc",
"parse": "node dist/utils/parser.js",
"postinstall": "npm run parse"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yinyanfr/ecdict.git"
},
"keywords": [
"ECDICT",
"dictionary",
"english-dictionary"
],
"author": "Yan",
"license": "MIT",
"bugs": {
"url": "https://github.com/yinyanfr/ecdict/issues"
},
"homepage": "https://github.com/yinyanfr/ecdict#readme",
"devDependencies": {
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"eslint": "^8.30.0",
"typescript": "^4.9.4"
},
"dependencies": {
"csv-parse": "^5.3.3"
}
}