@intlpullhq/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/package.json ADDED
@@ -0,0 +1,86 @@
1
+ {
2
+ "name": "@intlpullhq/cli",
3
+ "version": "0.1.0",
4
+ "description": "The official CLI for IntlPull - intelligent i18n for modern apps. Manage translations, sync with cloud, and automate localization workflows.",
5
+ "type": "module",
6
+ "bin": {
7
+ "intlpull": "./dist/index.js"
8
+ },
9
+ "files": [
10
+ "dist",
11
+ "README.md"
12
+ ],
13
+ "engines": {
14
+ "node": ">=18.0.0"
15
+ },
16
+ "scripts": {
17
+ "dev": "tsx watch src/index.tsx",
18
+ "build": "tsup src/index.tsx --format esm --dts --target node18",
19
+ "typecheck": "tsc --noEmit",
20
+ "test": "vitest run",
21
+ "test:watch": "vitest",
22
+ "prepublishOnly": "pnpm run build"
23
+ },
24
+ "keywords": [
25
+ "i18n",
26
+ "internationalization",
27
+ "translation",
28
+ "localization",
29
+ "l10n",
30
+ "cli",
31
+ "intl",
32
+ "intlpull",
33
+ "next-intl",
34
+ "react-i18next",
35
+ "vue-i18n",
36
+ "ota",
37
+ "translation-management"
38
+ ],
39
+ "dependencies": {
40
+ "@babel/generator": "^7.24.0",
41
+ "@babel/parser": "^7.24.0",
42
+ "@babel/traverse": "^7.24.0",
43
+ "@babel/types": "^7.24.0",
44
+ "chalk": "^5.3.0",
45
+ "cli-spinners": "^3.1.0",
46
+ "commander": "^12.1.0",
47
+ "figures": "^6.1.0",
48
+ "glob": "^10.4.0",
49
+ "gradient-string": "^2.0.2",
50
+ "ink": "^5.0.1",
51
+ "ink-big-text": "^2.0.0",
52
+ "ink-gradient": "^3.0.0",
53
+ "ink-select-input": "^6.0.0",
54
+ "ink-spinner": "^5.0.0",
55
+ "ink-table": "^3.1.0",
56
+ "ink-text-input": "^6.0.0",
57
+ "js-yaml": "^4.1.0",
58
+ "open": "^10.1.0",
59
+ "ora": "^8.0.1",
60
+ "react": "^18.3.0"
61
+ },
62
+ "devDependencies": {
63
+ "@types/babel__generator": "^7.6.0",
64
+ "@types/babel__traverse": "^7.20.0",
65
+ "@types/gradient-string": "^1.1.0",
66
+ "@types/js-yaml": "^4.0.9",
67
+ "@types/node": "^20.14.0",
68
+ "@types/react": "^18.3.0",
69
+ "memfs": "^4.6.0",
70
+ "tsup": "^8.1.0",
71
+ "tsx": "^4.15.0",
72
+ "typescript": "^5.4.0",
73
+ "vitest": "^2.0.0"
74
+ },
75
+ "repository": {
76
+ "type": "git",
77
+ "url": "https://github.com/intlpull/intlpull",
78
+ "directory": "apps/cli"
79
+ },
80
+ "homepage": "https://intlpull.com",
81
+ "bugs": {
82
+ "url": "https://github.com/intlpull/intlpull/issues"
83
+ },
84
+ "author": "Intlpull <support@intlpull.com>",
85
+ "license": "MIT"
86
+ }