openpalm 0.11.5 → 0.12.0-rc.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 (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +7 -2
package/README.md CHANGED
@@ -57,7 +57,7 @@ On first install, the CLI spawns `openpalm` which serves the setup wizard via th
57
57
 
58
58
  ## How It Works
59
59
 
60
- 1. **Bootstrap** (first install) -- creates the `~/.openpalm/` tree, downloads core assets from GitHub, seeds `knowledge/env/user.env` and `knowledge/env/stack.env`, serves the setup wizard, writes fixed stack compose files, enables requested addons in `config/stack/stack.yml`, and starts core services via `docker compose up`
60
+ 1. **Bootstrap** (first install) -- creates the `~/.openpalm/` tree, downloads core assets from GitHub, seeds `knowledge/env/user.env` and `knowledge/env/stack.env`, serves the setup wizard, writes fixed stack compose files, enables requested addons via `OP_ENABLED_ADDONS` in `knowledge/env/stack.env`, and starts core services via `docker compose up`
61
61
  2. **Running stack** -- commands refresh files in `~/.openpalm/` when needed, then execute Docker Compose directly.
62
62
  3. **Admin absent** -- all commands work identically. Admin is never required for any operation.
63
63
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openpalm",
3
- "version": "0.11.5",
3
+ "version": "0.12.0-rc.2",
4
4
  "type": "module",
5
5
  "license": "MPL-2.0",
6
6
  "description": "OpenPalm CLI — install and manage a self-hosted OpenPalm stack",
@@ -20,6 +20,7 @@
20
20
  "scripts": {
21
21
  "start": "bun run src/main.ts",
22
22
  "test": "bun test",
23
+ "typecheck": "tsc --noEmit",
23
24
  "test:e2e": "npx playwright test",
24
25
  "wizard:local": "bun run src/main.ts install --no-start --force",
25
26
  "build": "bun build src/main.ts --compile --outfile dist/openpalm-cli",
@@ -34,8 +35,12 @@
34
35
  "bun": ">=1.0.0"
35
36
  },
36
37
  "dependencies": {
37
- "@openpalm/lib": ">=0.11.5 <1.0.0",
38
+ "@openpalm/lib": ">=0.12.0-rc.2 <1.0.0",
38
39
  "citty": "^0.2.1",
39
40
  "yaml": "^2.8.0"
41
+ },
42
+ "devDependencies": {
43
+ "@types/node": "^25.9.1",
44
+ "typescript": "^6.0.3"
40
45
  }
41
46
  }