-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.34 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
{
"name": "baidu-translate-service",
"version": "2.2.4",
"description": "BaiDu Universal translation API access document",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": {
"default": "./lib/index.d.ts"
},
"browser": {
"default": "./lib/baiduTranslateService.js"
},
"default": {
"default": "./lib/index.js"
}
}
},
"files": [
"lib",
"package.json",
"*.md"
],
"repository": {
"type": "git",
"url": "https://github.com/mu-kang/baidu-translate-service.git"
},
"unpkg": "lib/baiduTranslateService.js",
"scripts": {
"build": "webpack && tsc",
"test": "node test.js"
},
"keywords": [
"baidu-translate",
"baidu-translate-service",
"translate-service"
],
"author": "mu-kang",
"license": "MIT",
"dependencies": {
"md5": "^2.3.0",
"node-fetch": "^2.6.11",
"querystring": "^0.2.1"
},
"devDependencies": {
"@types/md5": "^2.3.2",
"@types/node-fetch": "^2.6.4",
"ts-loader": "^9.4.3",
"typescript": "^5.1.3",
"webpack": "^5.88.0",
"webpack-cli": "^5.1.4"
},
"bugs": {
"url": "https://github.com/mu-kang/baidu-translate-service/issues"
},
"homepage": "https://github.com/mu-kang/baidu-translate-service#readme",
"directories": {
"lib": "lib"
}
}