lingo.dev 0.107.6 → 0.109.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/build/cli.cjs +443 -118
- package/build/cli.cjs.map +1 -1
- package/build/cli.mjs +353 -28
- package/build/cli.mjs.map +1 -1
- package/package.json +11 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lingo.dev",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.109.0",
|
|
4
4
|
"description": "Lingo.dev CLI",
|
|
5
5
|
"private": false,
|
|
6
6
|
"publishConfig": {
|
|
@@ -115,7 +115,7 @@
|
|
|
115
115
|
"@datocms/cma-client-node": "^4.0.1",
|
|
116
116
|
"@gitbeaker/rest": "^39.34.3",
|
|
117
117
|
"@inkjs/ui": "^2.0.0",
|
|
118
|
-
"@inquirer/prompts": "^7.
|
|
118
|
+
"@inquirer/prompts": "^7.7.0",
|
|
119
119
|
"@modelcontextprotocol/sdk": "^1.5.0",
|
|
120
120
|
"@openrouter/ai-sdk-provider": "^0.7.1",
|
|
121
121
|
"@paralleldrive/cuid2": "^2.2.2",
|
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
"ejs": "^3.1.10",
|
|
137
137
|
"express": "^5.1.0",
|
|
138
138
|
"external-editor": "^3.1.0",
|
|
139
|
-
"figlet": "^1.8.
|
|
139
|
+
"figlet": "^1.8.2",
|
|
140
140
|
"flat": "^6.0.1",
|
|
141
141
|
"gettext-parser": "^8.0.0",
|
|
142
142
|
"glob": "<11.0.0",
|
|
@@ -151,6 +151,7 @@
|
|
|
151
151
|
"is-url": "^1.2.4",
|
|
152
152
|
"jsdom": "^25.0.1",
|
|
153
153
|
"json5": "^2.2.3",
|
|
154
|
+
"jsonc-parser": "^3.3.1",
|
|
154
155
|
"jsonrepair": "^3.11.2",
|
|
155
156
|
"listr2": "^8.3.2",
|
|
156
157
|
"lodash": "^4.17.21",
|
|
@@ -168,7 +169,7 @@
|
|
|
168
169
|
"p-limit": "^6.2.0",
|
|
169
170
|
"php-array-reader": "^2.1.2",
|
|
170
171
|
"plist": "^3.1.0",
|
|
171
|
-
"posthog-node": "^
|
|
172
|
+
"posthog-node": "^5.5.1",
|
|
172
173
|
"prettier": "^3.4.2",
|
|
173
174
|
"react": "^18.3.1",
|
|
174
175
|
"rehype-stringify": "^10.0.1",
|
|
@@ -189,10 +190,10 @@
|
|
|
189
190
|
"xpath": "^0.0.34",
|
|
190
191
|
"yaml": "^2.7.0",
|
|
191
192
|
"zod": "^3.25.76",
|
|
192
|
-
"@lingo.dev/
|
|
193
|
-
"@lingo.dev/
|
|
194
|
-
"@lingo.dev/
|
|
195
|
-
"@lingo.dev/
|
|
193
|
+
"@lingo.dev/_compiler": "0.7.3",
|
|
194
|
+
"@lingo.dev/_react": "0.4.2",
|
|
195
|
+
"@lingo.dev/_sdk": "0.12.0",
|
|
196
|
+
"@lingo.dev/_spec": "0.40.0"
|
|
196
197
|
},
|
|
197
198
|
"devDependencies": {
|
|
198
199
|
"@types/babel__generator": "^7.27.0",
|
|
@@ -225,7 +226,8 @@
|
|
|
225
226
|
"scripts": {
|
|
226
227
|
"lingo.dev": "node --inspect=9229 ./bin/cli.mjs",
|
|
227
228
|
"dev": "tsup --watch",
|
|
228
|
-
"build": "
|
|
229
|
+
"build": "pnpm typecheck && tsup",
|
|
230
|
+
"typecheck": "tsc --noEmit",
|
|
229
231
|
"test": "vitest run",
|
|
230
232
|
"test:watch": "vitest",
|
|
231
233
|
"clean": "rm -rf build"
|