auto-translatr
Version:
An automatic translation library
60 lines (59 loc) • 1.53 kB
JSON
{
"name": "auto-translatr",
"version": "1.0.1",
"description": "An automatic translation library",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"bin": {
"auto-translatr": "dist/cli.js"
},
"scripts": {
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc",
"build:esm": "tsc --project tsconfig.esm.json && node scripts/rename-esm.js",
"prepublishOnly": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:e2e": "jest --config ./e2e/jest.e2e.config.js",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"keywords": [
"translation",
"auto-translate",
"auto-translatr",
"i18n",
"localization"
],
"author": "Sheyk",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Sheyk/auto-translatr.git"
},
"bugs": {
"url": "https://github.com/Sheyk/auto-translatr/issues"
},
"homepage": "https://github.com/Sheyk/auto-translatr#readme",
"files": [
"dist",
"README.md"
],
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"jest": "^29.0.0",
"prettier": "^3.6.2",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0"
}
}