contribute-now 0.4.1 → 0.5.0-dev.914e35d

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 (3) hide show
  1. package/README.md +39 -12
  2. package/dist/index.js +850 -227
  3. package/package.json +5 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "contribute-now",
3
- "version": "0.4.1",
3
+ "version": "0.5.0-dev.914e35d",
4
4
  "description": "Developer CLI that automates git workflows — branching, syncing, committing, and PRs — with multi-workflow and commit convention support.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -18,9 +18,10 @@
18
18
  "lint": "biome check .",
19
19
  "lint:fix": "biome check --write .",
20
20
  "format": "biome format --write .",
21
- "www:dev": "bun run --cwd www dev",
22
- "www:build": "bun run --cwd www build",
23
- "www:preview": "bun run --cwd www preview"
21
+ "landing:install": "bun install --cwd landing",
22
+ "landing:dev": "bun run --cwd landing dev",
23
+ "landing:build": "bun run --cwd landing build",
24
+ "landing:preview": "bun run --cwd landing preview"
24
25
  },
25
26
  "engines": {
26
27
  "node": ">=18",