@translate-local/tl 0.3.0 → 0.3.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.
Files changed (2) hide show
  1. package/README.md +2 -3
  2. package/package.json +21 -7
package/README.md CHANGED
@@ -4,11 +4,10 @@ CLI-first translation tool with glossary enforcement and local models.
4
4
 
5
5
  ```sh
6
6
  # Install globally
7
- npm install -g @translate-local/tl
7
+ bun install -g @translate-local/tl
8
8
 
9
9
  # Or run without installing
10
10
  bunx @translate-local/tl "hello" --to ar
11
- npx @translate-local/tl "hello" --to ar
12
11
  ```
13
12
 
14
- Full documentation: https://github.com/its-magdy/Translate-Local
13
+ Full documentation: https://github.com/its-magdy/translate-local
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@translate-local/tl",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "CLI-first translation tool with glossary enforcement and local models",
5
5
  "bin": {
6
6
  "tl": "bin/tl.js"
@@ -14,14 +14,28 @@
14
14
  },
15
15
  "repository": {
16
16
  "type": "git",
17
- "url": "git+https://github.com/its-magdy/Translate-Local.git"
17
+ "url": "git+https://github.com/its-magdy/translate-local.git"
18
18
  },
19
+ "keywords": [
20
+ "translation",
21
+ "cli",
22
+ "local",
23
+ "offline",
24
+ "ollama",
25
+ "llm",
26
+ "glossary",
27
+ "i18n",
28
+ "l10n",
29
+ "tui",
30
+ "rtl",
31
+ "arabic"
32
+ ],
19
33
  "license": "MIT",
20
34
  "optionalDependencies": {
21
- "@translate-local/tl-darwin-arm64": "0.3.0",
22
- "@translate-local/tl-darwin-x64": "0.3.0",
23
- "@translate-local/tl-linux-x64": "0.3.0",
24
- "@translate-local/tl-linux-arm64": "0.3.0",
25
- "@translate-local/tl-win32-x64": "0.3.0"
35
+ "@translate-local/tl-darwin-arm64": "0.3.1",
36
+ "@translate-local/tl-darwin-x64": "0.3.1",
37
+ "@translate-local/tl-linux-x64": "0.3.1",
38
+ "@translate-local/tl-linux-arm64": "0.3.1",
39
+ "@translate-local/tl-win32-x64": "0.3.1"
26
40
  }
27
41
  }