mute-english-api
Version:
提供英语词典和百度翻译等API服务的npm包,支持多种翻译服务集成
58 lines (57 loc) • 1.35 kB
JSON
{
"name": "mute-english-api",
"version": "1.0.2",
"description": "提供英语词典和百度翻译等API服务的npm包,支持多种翻译服务集成",
"type": "module",
"main": "index.js",
"exports": {
".": {
"import": "./index.js",
"require": "./index.js"
},
"./baidu-translate": {
"import": "./src/services/baiduTranslate.js"
},
"./dictionary": {
"import": "./src/services/dictionaryApi.js"
},
"./config": {
"import": "./src/config/index.js"
}
},
"scripts": {
"test": "node --experimental-vm-modules node_modules/.bin/jest"
},
"jest": {
"testEnvironment": "node",
"testMatch": ["**/?(*.)+(spec|test).[jt]s?(x)", "**/?(*.)+(spec|test).mjs"]
},
"repository": {
"type": "git",
"url": "git+https://github.com/czm233/mute-english-api.git"
},
"keywords": [
"translation",
"baidu-translate",
"dictionary",
"english",
"api",
"翻译",
"百度翻译",
"词典"
],
"author": "czm",
"license": "ISC",
"files": [
"index.js",
"src/",
"README.md"
],
"engines": {
"node": ">=14.0.0"
},
"bugs": {
"url": "https://github.com/czm233/mute-english-api/issues"
},
"homepage": "https://github.com/czm233/mute-english-api#readme"
}