loclaude 0.0.1-alpha.3 → 0.0.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.
- package/CHANGELOG.md +2 -2
- package/README.md +150 -64
- package/libs/cli/dist/commands/doctor.d.ts.map +1 -1
- package/libs/cli/dist/index.bun.js +108 -27
- package/libs/cli/dist/index.bun.js.map +5 -5
- package/libs/cli/dist/index.js +108 -27
- package/libs/cli/dist/index.js.map +5 -5
- package/libs/cli/package.json +2 -2
- package/package.json +17 -7
package/libs/cli/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loclaude-internal/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"description": "An internal @loclaude-internal package that supplies common CLI utilities.",
|
|
5
5
|
"module": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"publishConfig": {
|
|
26
26
|
"access": "public",
|
|
27
27
|
"registry": "https://registry.npmjs.org/",
|
|
28
|
-
"tag": "
|
|
28
|
+
"tag": "latest"
|
|
29
29
|
},
|
|
30
30
|
"exports": {
|
|
31
31
|
".": {
|
package/package.json
CHANGED
|
@@ -1,17 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "loclaude",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"description": "Claude Code with local Ollama LLMs - Zero API costs, no rate limits, complete privacy",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "./LICENSE",
|
|
7
7
|
"keywords": [
|
|
8
8
|
"claude",
|
|
9
|
+
"claude-code",
|
|
9
10
|
"ollama",
|
|
10
11
|
"llm",
|
|
12
|
+
"local-llm",
|
|
13
|
+
"ai-coding",
|
|
14
|
+
"self-hosted",
|
|
11
15
|
"cli",
|
|
12
16
|
"ai",
|
|
13
17
|
"open-webui",
|
|
14
|
-
"
|
|
18
|
+
"docker",
|
|
19
|
+
"nvidia",
|
|
20
|
+
"gpu",
|
|
21
|
+
"offline-ai",
|
|
22
|
+
"privacy",
|
|
23
|
+
"cost-free",
|
|
24
|
+
"unlimited"
|
|
15
25
|
],
|
|
16
26
|
"contributors": [
|
|
17
27
|
{
|
|
@@ -22,11 +32,11 @@
|
|
|
22
32
|
],
|
|
23
33
|
"repository": {
|
|
24
34
|
"type": "git",
|
|
25
|
-
"url": "git+https://github.com/nicholasgalante1997/
|
|
35
|
+
"url": "git+https://github.com/nicholasgalante1997/loclaude.git"
|
|
26
36
|
},
|
|
27
|
-
"homepage": "https://github.com/nicholasgalante1997/
|
|
37
|
+
"homepage": "https://github.com/nicholasgalante1997/loclaude#readme",
|
|
28
38
|
"bugs": {
|
|
29
|
-
"url": "https://github.com/nicholasgalante1997/
|
|
39
|
+
"url": "https://github.com/nicholasgalante1997/loclaude/issues"
|
|
30
40
|
},
|
|
31
41
|
"publishConfig": {
|
|
32
42
|
"access": "public",
|
|
@@ -69,7 +79,7 @@
|
|
|
69
79
|
"release:beta": "bun run build && npm publish --tag beta --access public"
|
|
70
80
|
},
|
|
71
81
|
"dependencies": {
|
|
72
|
-
"@loclaude-internal/cli": "^0.0.
|
|
82
|
+
"@loclaude-internal/cli": "^0.0.2"
|
|
73
83
|
},
|
|
74
84
|
"peerDependencies": {
|
|
75
85
|
"typescript": "^5"
|