-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 915 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
{
"name": "modernmt",
"version": "1.5.2",
"description": "ModernMT API wrapper",
"author": "ModernMT <info@modernmt.com> (https://modernmt.com)",
"license": "MIT",
"homepage": "https://github.com/modernmt/modernmt-node",
"repository": {
"type": "git",
"url": "https://github.com/modernmt/modernmt-node.git"
},
"engines": {
"node": ">=8.0.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*",
"umd/*"
],
"unpkg": "umd/index.js",
"scripts": {
"prepublishOnly": "rm -rf dist/* umd/* && tsc && webpack",
"build": "rm -rf dist/* umd/* && tsc && webpack",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@types/node": "^20.12.13",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"form-data": "^4.0.0",
"jose": "^5.3.0"
}
}