stoke/package.json
grok-reviewer-andresmgsl 2dcd8e6f1b docs: shorten README and move command reference to docs/COMMANDS.md
Keep the README scannable (install, quick start, capability map, config,
security, develop) and put full options/examples/API mapping in
docs/COMMANDS.md without dropping detail. Ship COMMANDS.md in the npm
package files list.
2026-07-26 23:11:30 +00:00

40 lines
743 B
JSON

{
"name": "stoke",
"version": "1.3.0",
"description": "CLI for the heavy-duty forge (Forgejo)",
"main": "src/cli.js",
"scripts": {
"test": "node --test",
"start": "node src/cli.js"
},
"keywords": [
"forgejo",
"cli",
"heavy-duty",
"forge"
],
"author": "Heavy Duty Builders",
"license": "ISC",
"type": "commonjs",
"engines": {
"node": ">=22.12.0"
},
"repository": {
"type": "git",
"url": "https://forgejo.heavyduty.builders/heavy-duty/stoke.git"
},
"dependencies": {
"commander": "^15.0.0"
},
"bin": {
"stoke": "src/cli.js"
},
"files": [
"src/",
"README.md",
"LICENSE",
"docs/DESIGN.md",
"docs/COMMANDS.md",
"assets/logo-mark.svg"
]
}