Some checks failed
ci / test (pull_request) Has been cancelled
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.
40 lines
743 B
JSON
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"
|
|
]
|
|
}
|