contribute-now 0.1.2 → 0.2.0-dev.0de9dbd
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/README.md +162 -133
- package/dist/index.js +2599 -885
- package/package.json +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "contribute-now",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0-dev.0de9dbd",
|
|
4
4
|
"description": "Git workflow CLI for squash-merge two-branch models. Keeps dev in sync with main after squash merges.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -12,12 +12,12 @@
|
|
|
12
12
|
],
|
|
13
13
|
"scripts": {
|
|
14
14
|
"build": "bun build src/index.ts --outfile dist/index.js --target node --packages external",
|
|
15
|
+
"cli": "bun run src/index.ts --",
|
|
15
16
|
"dev": "bun src/index.ts",
|
|
16
17
|
"test": "bun test",
|
|
17
18
|
"lint": "biome check .",
|
|
18
19
|
"lint:fix": "biome check --write .",
|
|
19
20
|
"format": "biome format --write .",
|
|
20
|
-
"prepare": "husky || true",
|
|
21
21
|
"www:dev": "bun run --cwd www dev",
|
|
22
22
|
"www:build": "bun run --cwd www build",
|
|
23
23
|
"www:preview": "bun run --cwd www preview"
|
|
@@ -44,6 +44,7 @@
|
|
|
44
44
|
"url": "git+https://github.com/warengonzaga/contribute-now.git"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
+
"@clack/prompts": "^1.0.1",
|
|
47
48
|
"@github/copilot-sdk": "^0.1.25",
|
|
48
49
|
"@wgtechlabs/log-engine": "^2.3.1",
|
|
49
50
|
"citty": "^0.1.6",
|
|
@@ -54,7 +55,6 @@
|
|
|
54
55
|
"@biomejs/biome": "^2.4.4",
|
|
55
56
|
"@types/bun": "latest",
|
|
56
57
|
"@types/figlet": "^1.7.0",
|
|
57
|
-
"husky": "^9.1.7",
|
|
58
58
|
"typescript": "^5.7.0"
|
|
59
59
|
}
|
|
60
60
|
}
|