deeplx-lib
Version:
Powerful free DeepL API wrapper with no token required.
74 lines • 1.84 kB
JSON
{
"name": "deeplx-lib",
"type": "module",
"version": "0.0.5",
"description": "Powerful free DeepL API wrapper with no token required.",
"author": "Lete114 <me@imlete.cn>",
"license": "MIT",
"homepage": "https://github.com/lete114/deeplx-lib#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/lete114/deeplx-lib.git"
},
"bugs": "https://github.com/lete114/deeplx-lib/issues",
"keywords": [
"deepl",
"deeplx",
"deepl-api",
"deepl-free",
"deepl-translate",
"deepl-translation",
"deepl-translator",
"translate",
"translate-api",
"translator"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist"
],
"devDependencies": {
"@antfu/eslint-config": "^4.10.1",
"@antfu/ni": "^24.1.0",
"@antfu/utils": "^9.1.0",
"@types/node": "^22.13.10",
"bumpp": "^10.1.0",
"eslint": "^9.22.0",
"lint-staged": "^15.5.0",
"simple-git-hooks": "^2.11.1",
"tinyexec": "^0.3.2",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"unbuild": "^3.5.0",
"vite": "^6.2.1",
"vitest": "^3.0.8",
"vitest-package-exports": "^0.1.1",
"yaml": "^2.7.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm i --frozen-lockfile --ignore-scripts --offline && npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
},
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"lint": "eslint",
"release": "bumpp && pnpm publish",
"start": "tsx src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit"
}
}