loclaude 0.0.1-alpha.1 → 0.0.1-alpha.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.
@@ -1,9 +1,32 @@
1
1
  {
2
2
  "name": "@loclaude-internal/cli",
3
3
  "version": "0.0.1-alpha.1",
4
+ "description": "An internal @loclaude-internal package that supplies common CLI utilities.",
4
5
  "module": "dist/index.js",
5
6
  "type": "module",
6
- "private": true,
7
+ "license": "MIT",
8
+ "keywords": [
9
+ "claude",
10
+ "ollama",
11
+ "llm",
12
+ "cli",
13
+ "ai",
14
+ "open-webui",
15
+ "claude-code"
16
+ ],
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "git+https://github.com/nicholasgalante1997/docker-ollama.git"
20
+ },
21
+ "homepage": "https://github.com/nicholasgalante1997/docker-ollama#readme",
22
+ "bugs": {
23
+ "url": "https://github.com/nicholasgalante1997/docker-ollama/issues"
24
+ },
25
+ "publishConfig": {
26
+ "access": "public",
27
+ "registry": "https://registry.npmjs.org/",
28
+ "tag": "alpha"
29
+ },
7
30
  "exports": {
8
31
  ".": {
9
32
  "import": "./dist/index.js",
@@ -22,7 +45,9 @@
22
45
  }
23
46
  },
24
47
  "files": [
25
- "dist"
48
+ "dist",
49
+ "LICENSE",
50
+ "README.md"
26
51
  ],
27
52
  "engines": {
28
53
  "bun": ">=1.3"
@@ -35,7 +60,12 @@
35
60
  "build": "run-p build-types bundle",
36
61
  "postbuild": "npm pack",
37
62
  "test": "bun test",
38
- "test:watch": "bun test --watch"
63
+ "test:watch": "bun test --watch",
64
+ "prepublishOnly": "bun run build",
65
+ "release": "bun run build && npm publish --access public",
66
+ "release:rc": "bun run build && npm publish --tag rc --access public",
67
+ "release:alpha": "bun run build && npm publish --tag alpha --access public",
68
+ "release:beta": "bun run build && npm publish --tag beta --access public"
39
69
  },
40
70
  "devDependencies": {
41
71
  "@types/bun": "latest",
@@ -45,6 +75,11 @@
45
75
  "peerDependencies": {
46
76
  "typescript": "^5"
47
77
  },
78
+ "peerDependenciesMeta": {
79
+ "typescript": {
80
+ "optional": true
81
+ }
82
+ },
48
83
  "dependencies": {
49
84
  "@inquirer/prompts": "^8.2.0",
50
85
  "bytes": "^3.1.2",
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "loclaude",
3
- "version": "0.0.1-alpha.1",
3
+ "version": "0.0.1-alpha.2",
4
4
  "description": "Run Claude Code with local Ollama LLMs",
5
5
  "type": "module",
6
- "license": "MIT",
6
+ "license": "./LICENSE",
7
7
  "keywords": [
8
8
  "claude",
9
9
  "ollama",
@@ -13,6 +13,13 @@
13
13
  "open-webui",
14
14
  "claude-code"
15
15
  ],
16
+ "contributors": [
17
+ {
18
+ "email": "rustycloud42@protonmail.com",
19
+ "name": "mega-blastoise",
20
+ "url": "https://github.com/mega-blastoise"
21
+ }
22
+ ],
16
23
  "repository": {
17
24
  "type": "git",
18
25
  "url": "git+https://github.com/nicholasgalante1997/docker-ollama.git"
@@ -21,6 +28,11 @@
21
28
  "bugs": {
22
29
  "url": "https://github.com/nicholasgalante1997/docker-ollama/issues"
23
30
  },
31
+ "publishConfig": {
32
+ "access": "public",
33
+ "registry": "https://registry.npmjs.org/",
34
+ "tag": "alpha"
35
+ },
24
36
  "files": [
25
37
  ".claude/CLAUDE.md",
26
38
  "bin",
@@ -52,10 +64,11 @@
52
64
  "prepublishOnly": "bun run build",
53
65
  "release": "bun run build && npm publish --access public",
54
66
  "release:rc": "bun run build && npm publish --tag rc --access public",
67
+ "release:alpha": "bun run build && npm publish --tag alpha --access public",
55
68
  "release:beta": "bun run build && npm publish --tag beta --access public"
56
69
  },
57
70
  "dependencies": {
58
- "@loclaude-internal/cli": "workspace:*"
71
+ "@loclaude-internal/cli": "^0.0.1-alpha.1"
59
72
  },
60
73
  "peerDependencies": {
61
74
  "typescript": "^5"