lingo.dev 0.63.2 → 0.70.2

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.
Files changed (61) hide show
  1. package/LICENSE.md +201 -0
  2. package/bin/cli.mjs +3 -1
  3. package/build/acorn-7GKKTQAZ.mjs +3047 -0
  4. package/build/acorn-C2XWIPGO.cjs +3047 -0
  5. package/build/angular-5ISIBFBY.mjs +2794 -0
  6. package/build/angular-XQHAJDB2.cjs +2794 -0
  7. package/build/api-7PZYRHW3.mjs +5 -0
  8. package/build/api-C35FHFLD.cjs +7 -0
  9. package/build/babel-DSN33ILH.cjs +6946 -0
  10. package/build/babel-ZNMMF5TX.mjs +6946 -0
  11. package/build/chunk-2AI774XU.cjs +130086 -0
  12. package/build/chunk-DAMIL4EZ.mjs +4533 -0
  13. package/build/chunk-HEBXNMVQ.mjs +48 -0
  14. package/build/chunk-IKCNLHD5.cjs +4533 -0
  15. package/build/chunk-L5BCMCQE.cjs +48 -0
  16. package/build/chunk-MUWDGJF2.mjs +962 -0
  17. package/build/chunk-XFD3AFWA.mjs +130086 -0
  18. package/build/chunk-ZXT7SLL5.cjs +962 -0
  19. package/build/cli.cjs +134752 -0
  20. package/build/cli.d.cts +3 -0
  21. package/build/cli.d.ts +3 -0
  22. package/build/cli.mjs +134745 -0
  23. package/build/estree-2CSK435T.mjs +4374 -0
  24. package/build/estree-N7T576SJ.cjs +4374 -0
  25. package/build/flow-IBTCTNRO.mjs +26897 -0
  26. package/build/flow-Y3OXWML5.cjs +26897 -0
  27. package/build/glimmer-FCD5RY7E.mjs +2847 -0
  28. package/build/glimmer-N5YT5DMK.cjs +2847 -0
  29. package/build/graphql-4DMZI42L.mjs +1247 -0
  30. package/build/graphql-GV4OMB3Z.cjs +1247 -0
  31. package/build/html-RNXFERLB.mjs +2716 -0
  32. package/build/html-XMA5LP2U.cjs +2716 -0
  33. package/build/markdown-6BIFNHAV.mjs +3484 -0
  34. package/build/markdown-LUUZAIEE.cjs +3484 -0
  35. package/build/meriyah-IV6VMAUC.mjs +2474 -0
  36. package/build/meriyah-XSJDPEN3.cjs +2474 -0
  37. package/build/postcss-PDIS5YQZ.cjs +5057 -0
  38. package/build/postcss-SDQEBDMO.mjs +5057 -0
  39. package/build/sdk.cjs +8 -0
  40. package/build/sdk.d.cts +1 -0
  41. package/build/sdk.d.ts +1 -0
  42. package/build/sdk.mjs +8 -0
  43. package/build/spec.cjs +47 -0
  44. package/build/spec.d.cts +1 -0
  45. package/build/spec.d.ts +1 -0
  46. package/build/spec.mjs +47 -0
  47. package/build/typescript-TT5RRHSS.cjs +13104 -0
  48. package/build/typescript-U5HXARXA.mjs +13104 -0
  49. package/build/yaml-6ITWGIVF.cjs +4223 -0
  50. package/build/yaml-DDDZYPIN.mjs +4223 -0
  51. package/package.json +31 -9
  52. package/readme.md +5 -16
  53. package/build/react-next.cjs +0 -2
  54. package/build/react-next.d.cts +0 -1
  55. package/build/react-next.d.ts +0 -1
  56. package/build/react-next.mjs +0 -2
  57. package/build/react.cjs +0 -2
  58. package/build/react.d.cts +0 -2
  59. package/build/react.d.ts +0 -2
  60. package/build/react.mjs +0 -2
  61. package/content/banner.png +0 -0
package/package.json CHANGED
@@ -1,25 +1,47 @@
1
1
  {
2
2
  "name": "lingo.dev",
3
- "version": "0.63.2",
4
- "description": "Lingo.dev CLI",
3
+ "version": "0.70.2",
4
+ "description": "Lingo.dev",
5
5
  "private": false,
6
6
  "type": "module",
7
7
  "sideEffects": false,
8
- "engines": {
9
- "node": ">=18"
8
+ "exports": {
9
+ "./cli": {
10
+ "types": "./build/cli.d.ts",
11
+ "import": "./build/cli.mjs",
12
+ "require": "./build/cli.cjs"
13
+ },
14
+ "./sdk": {
15
+ "types": "./build/sdk.d.ts",
16
+ "import": "./build/sdk.mjs",
17
+ "require": "./build/sdk.cjs"
18
+ },
19
+ "./spec": {
20
+ "types": "./build/spec.d.ts",
21
+ "import": "./build/spec.mjs",
22
+ "require": "./build/spec.cjs"
23
+ }
10
24
  },
11
25
  "bin": {
12
26
  "lingo.dev": "./bin/cli.mjs"
13
27
  },
14
28
  "files": [
15
29
  "bin",
16
- "build",
17
- "content"
30
+ "build"
18
31
  ],
19
32
  "keywords": [],
20
33
  "author": "",
21
34
  "license": "Apache-2.0",
22
- "dependencies": {
23
- "@replexica/cli": "*"
35
+ "devDependencies": {
36
+ "tsup": "^8.3.5",
37
+ "typescript": "^5.7.2",
38
+ "@lingo.dev/cli": "0.70.1",
39
+ "@lingo.dev/spec": "0.24.1",
40
+ "@lingo.dev/sdk": "0.7.11"
41
+ },
42
+ "scripts": {
43
+ "lingo.dev": "node --inspect ./bin/cli.mjs",
44
+ "clean": "rm -rf build",
45
+ "build": "tsup"
24
46
  }
25
- }
47
+ }
package/readme.md CHANGED
@@ -1,22 +1,11 @@
1
- <p align="center">
2
- <img src="./content/banner.png">
3
- </p>
4
-
5
1
  # Lingo.dev
6
2
 
7
- ![GitHub last commit](https://img.shields.io/github/last-commit/replexica/replexica)
8
- [![Release](https://github.com/replexica/replexica/actions/workflows/release.yml/badge.svg)](https://github.com/replexica/replexica/actions/workflows/release.yml)
9
- [![GitHub License](https://img.shields.io/github/license/replexica/replexica)](https://github.com/replexica/replexica/blob/main/LICENSE.md)
10
-
11
- [Docs](https://lingo.dev/go/docs) •
12
- [Website](https://lingo.dev)
13
-
14
3
  Lingo.dev is a localization engine for React, to ship multi-lingual apps fast and reach more users.
15
4
 
16
- Lingo.dev supports React apps, and several i18n formats, `.md` files for Markdown content, and classic JSON and YAML-based formats.
17
-
18
- Lingo.dev comes with an open-source tools and an i18n API in the cloud that performs translations using state-of-the-art context-aware LLMs.
19
-
20
5
  ## Getting Started
21
6
 
22
- Check out our [Docs](https://lingo.dev/go/docs) for more detailed guides on how to use Lingo.dev with your app!
7
+ ```
8
+ npx lingo.dev@latest
9
+ ```
10
+
11
+ Check out our [Docs](https://lingo.dev/docs) for more detailed guides on how to use build multi-lingual apps with Lingo.dev!
@@ -1,2 +0,0 @@
1
- "use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _createStarExport(obj) { Object.keys(obj) .filter((key) => key !== "default" && key !== "__esModule") .forEach((key) => { if (exports.hasOwnProperty(key)) { return; } Object.defineProperty(exports, key, {enumerable: true, configurable: true, get: () => obj[key]}); }); }// src/react-next.ts
2
- var _next = require('@replexica/react/next'); _createStarExport(_next);
@@ -1 +0,0 @@
1
- export * from '@replexica/react/next';
@@ -1 +0,0 @@
1
- export * from '@replexica/react/next';
@@ -1,2 +0,0 @@
1
- // src/react-next.ts
2
- export * from "@replexica/react/next";
package/build/react.cjs DELETED
@@ -1,2 +0,0 @@
1
- "use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _createStarExport(obj) { Object.keys(obj) .filter((key) => key !== "default" && key !== "__esModule") .forEach((key) => { if (exports.hasOwnProperty(key)) { return; } Object.defineProperty(exports, key, {enumerable: true, configurable: true, get: () => obj[key]}); }); }// src/react.ts
2
- var _react = require('@replexica/react'); _createStarExport(_react);
package/build/react.d.cts DELETED
@@ -1,2 +0,0 @@
1
- export * from '@replexica/react';
2
- import '@replexica/react/next';
package/build/react.d.ts DELETED
@@ -1,2 +0,0 @@
1
- export * from '@replexica/react';
2
- import '@replexica/react/next';
package/build/react.mjs DELETED
@@ -1,2 +0,0 @@
1
- // src/react.ts
2
- export * from "@replexica/react";
Binary file