-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.72 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
74
75
76
77
78
79
80
{
"name": "node-easynmt",
"version": "1.2.0",
"description": "multi-language translate using UKPLab/EasyNMT",
"keywords": [
"translation",
"neural machine translation",
"EasyNMT",
"Opus-MT",
"mBART50",
"M2M_100",
"docker",
"node",
"browser",
"isomorphic",
"typescript",
"wrapper",
"client",
"server",
"api",
"http"
],
"author": {
"name": "Beeno Tung",
"email": "aabbcc1241@yahoo.com.hk",
"url": "https://beeno-tung.surge.sh"
},
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/beenotung/node-EasyNMT.git"
},
"homepage": "https://github.com/beenotung/node-EasyNMT#readme",
"bugs": {
"url": "https://github.com/beenotung/node-EasyNMT/issues"
},
"main": "./index.js",
"types": "./index.d.ts",
"browser": "./bundle.js",
"unpkg": "./bundle.js",
"bin": {
"easynmt-server": "./bin.js"
},
"files": [
"bin.js",
"bundle.js",
"client.js",
"client.d.ts",
"cli.js",
"config.js",
"index.js",
"server.js",
"cli.d.ts",
"config.d.ts",
"index.d.ts",
"server.d.ts"
],
"scripts": {
"test": "tsc --noEmit",
"clean": "rimraf *.js *.d.ts && git checkout bin.js",
"tsc": "tsc -p .",
"bundle": "esbuild --bundle --outfile=bundle.js browser.ts",
"build": "run-s clean tsc bundle"
},
"dependencies": {
"cast.ts": "^1.12.2",
"debug": "^4.3.4"
},
"devDependencies": {
"@beenotung/tslib": "^23.4.0",
"@types/debug": "^4.1.12",
"@types/node": "^20.12.5",
"esbuild": "^0.20.2",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.4"
}
}