lingo.dev 0.79.5 → 0.80.1
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/build/cli.cjs +195 -64
- package/build/cli.cjs.map +1 -1
- package/build/cli.mjs +179 -48
- package/build/cli.mjs.map +1 -1
- package/package.json +7 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lingo.dev",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.80.1",
|
|
4
4
|
"description": "Lingo.dev CLI",
|
|
5
5
|
"private": false,
|
|
6
6
|
"publishConfig": {
|
|
@@ -49,11 +49,14 @@
|
|
|
49
49
|
"author": "",
|
|
50
50
|
"license": "Apache-2.0",
|
|
51
51
|
"dependencies": {
|
|
52
|
+
"@ai-sdk/anthropic": "^1.2.6",
|
|
53
|
+
"@ai-sdk/openai": "^1.3.7",
|
|
52
54
|
"@datocms/cma-client-node": "^3.4.0",
|
|
53
55
|
"@gitbeaker/rest": "^39.34.3",
|
|
54
56
|
"@inquirer/prompts": "^7.2.3",
|
|
55
57
|
"@modelcontextprotocol/sdk": "^1.5.0",
|
|
56
58
|
"@paralleldrive/cuid2": "^2.2.2",
|
|
59
|
+
"ai": "^4.3.2",
|
|
57
60
|
"bitbucket": "^2.12.0",
|
|
58
61
|
"chalk": "^5.4.1",
|
|
59
62
|
"cors": "^2.8.5",
|
|
@@ -90,6 +93,7 @@
|
|
|
90
93
|
"p-limit": "^6.2.0",
|
|
91
94
|
"php-array-reader": "^2.1.2",
|
|
92
95
|
"plist": "^3.1.0",
|
|
96
|
+
"posthog-node": "^4.11.2",
|
|
93
97
|
"prettier": "^3.4.2",
|
|
94
98
|
"properties-parser": "^0.6.0",
|
|
95
99
|
"slugify": "^1.6.6",
|
|
@@ -102,8 +106,8 @@
|
|
|
102
106
|
"xpath": "^0.0.34",
|
|
103
107
|
"yaml": "^2.7.0",
|
|
104
108
|
"zod": "^3.24.1",
|
|
105
|
-
"@lingo.dev/_sdk": "0.7.
|
|
106
|
-
"@lingo.dev/_spec": "0.
|
|
109
|
+
"@lingo.dev/_sdk": "0.7.31",
|
|
110
|
+
"@lingo.dev/_spec": "0.27.0"
|
|
107
111
|
},
|
|
108
112
|
"devDependencies": {
|
|
109
113
|
"@types/cors": "^2.8.17",
|