@ui18n/cli
Version:
🌍 UI18n CLI工具 - 强大的国际化命令行工具
107 lines (106 loc) • 2.66 kB
JSON
{
"name": "@ui18n/cli",
"version": "0.1.0-rc.1",
"description": "🌍 UI18n CLI工具 - 强大的国际化命令行工具",
"main": "dist/src/index.js",
"bin": {
"ui18n": "bin/ui18n"
},
"type": "module",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": {
"types": "./dist/src/index.d.ts",
"default": "./dist/src/index.js"
}
}
},
"files": [
"dist",
"bin",
"templates",
"README.md"
],
"scripts": {
"build": "node build.js",
"dev": "node build.js --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"type-check": "tsc --noEmit",
"lint": "eslint \"src/**/*.ts\"",
"clean": "rmdir /s /q dist 2>nul || echo \"dist directory cleaned\"",
"prepublishOnly": "npm run clean && npm run build && npm run test",
"prepack": "npm run clean && npm run build"
},
"keywords": [
"cli",
"i18n",
"internationalization",
"translation",
"ai",
"multilingual",
"typescript",
"command-line",
"ui18n",
"extract",
"translate",
"automation"
],
"author": {
"name": "iron-wayne",
"url": "https://github.com/iron-wayne"
},
"license": "MIT",
"dependencies": {
"@ui18n/core": "file:../core",
"boxen": "^7.1.1",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"cosmiconfig": "^8.3.6",
"fs-extra": "^11.1.1",
"glob": "^10.3.10",
"inquirer": "^9.2.12",
"listr2": "^7.0.2",
"ora": "^7.0.1",
"update-notifier": "^7.0.0",
"yaml": "^2.3.4"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.4",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.3",
"@types/node": "^20.8.0",
"@types/update-notifier": "^6.0.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.45.0",
"jest": "^29.6.1",
"rollup": "^3.26.3",
"rollup-plugin-dts": "^5.3.1",
"ts-jest": "^29.1.1",
"typescript": "^5.9.2"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iron-wayne/UI18N-OSS.git",
"directory": "packages/cli"
},
"bugs": {
"url": "https://github.com/iron-wayne/UI18N-OSS/issues"
},
"homepage": "https://github.com/iron-wayne/UI18N-OSS/tree/main/packages/cli#readme",
"publishConfig": {
"access": "public"
}
}