vue-i18n-resource-generator
Version:
A CLI tool that utilizes the OpenAI API to automatically generate static Vue I18n resources.
52 lines (51 loc) • 1.5 kB
JSON
{
"name": "vue-i18n-resource-generator",
"description": "A CLI tool that utilizes the OpenAI API to automatically generate static Vue I18n resources.",
"version": "0.0.3e",
"keywords": [
"Vue",
"OpenAI",
"Vue I18n",
"translations",
"automatic translations",
"translate Vue I18n",
"automatically translate Vue I18n files",
"generate Vue I18n resources",
"ChatGPT",
"OpenAI API"
],
"homepage": "https://github.com/DavidR95/vue-i18n-resource-generator#readme",
"license": "ISC",
"main": "./dist/src/index.js",
"bin": "./dist/src/index.js",
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "tsc",
"typecheck": "tsc --noEmit",
"format": "prettier --ignore-path .gitignore --write .",
"prelint": "npm run format",
"lint": "eslint --ignore-path .gitignore .",
"prepare": "npm run build",
"prepublishOnly": "npm run typecheck && npm run lint"
},
"dependencies": {
"@commander-js/extra-typings": "^10.0.3",
"chalk": "^4.1.2",
"commander": "^10.0.1",
"gpt-3-encoder": "^1.1.4",
"openai": "^3.2.1",
"partial-json-parser": "^1.2.2"
},
"devDependencies": {
"@tsconfig/strictest": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}