@babelx/cli 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +190 -0
- package/README.md +214 -0
- package/dist/index.js +73708 -0
- package/package.json +63 -0
package/package.json
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@babelx/cli",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "BabelX CLI - AI-powered translation and i18n management tool",
|
|
5
|
+
"module": "index.ts",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"license": "Apache-2.0",
|
|
8
|
+
"author": "BabelX Team",
|
|
9
|
+
"homepage": "https://babelx.dev",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://github.com/babelxdev/bx-cli.git"
|
|
13
|
+
},
|
|
14
|
+
"keywords": [
|
|
15
|
+
"i18n",
|
|
16
|
+
"translation",
|
|
17
|
+
"cli",
|
|
18
|
+
"babelx",
|
|
19
|
+
"ai-translation",
|
|
20
|
+
"internationalization",
|
|
21
|
+
"localization"
|
|
22
|
+
],
|
|
23
|
+
"bin": {
|
|
24
|
+
"bx": "./dist/index.js"
|
|
25
|
+
},
|
|
26
|
+
"files": [
|
|
27
|
+
"dist/",
|
|
28
|
+
"LICENSE",
|
|
29
|
+
"README.md"
|
|
30
|
+
],
|
|
31
|
+
"engines": {
|
|
32
|
+
"node": ">=18.0.0"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@biomejs/biome": "^2.3.14",
|
|
36
|
+
"@types/bun": "latest",
|
|
37
|
+
"@types/figlet": "^1.7.0",
|
|
38
|
+
"@types/react": "^19.2.13",
|
|
39
|
+
"react-devtools-core": "^7.0.1"
|
|
40
|
+
},
|
|
41
|
+
"peerDependencies": {
|
|
42
|
+
"typescript": "^5.9.3"
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@inkjs/ui": "^2.0.0",
|
|
46
|
+
"axios": "^1.13.4",
|
|
47
|
+
"chalk": "^5.6.2",
|
|
48
|
+
"commander": "^14.0.3",
|
|
49
|
+
"figlet": "^1.10.0",
|
|
50
|
+
"gradient-string": "^3.0.0",
|
|
51
|
+
"ink": "^6.6.0",
|
|
52
|
+
"ink-spinner": "^5.0.0",
|
|
53
|
+
"ora": "^9.1.0",
|
|
54
|
+
"react": "^19.2.4",
|
|
55
|
+
"zod": "^4.3.6"
|
|
56
|
+
},
|
|
57
|
+
"scripts": {
|
|
58
|
+
"dev": "bun run index.ts",
|
|
59
|
+
"build": "bun build index.ts --outdir dist --target node",
|
|
60
|
+
"lint:check": "bunx biome check --write --error-on-warnings && bunx tsc --noEmit",
|
|
61
|
+
"lint:fix": "biome check --write ."
|
|
62
|
+
}
|
|
63
|
+
}
|