Npm publish config
Skill a5c-ai/babysitter/library/specializations/cli-mcp-development/skills/npm-publish-config
Configure npm publishing with proper bin entry, files, and registry settings.From its SKILL.md
npx -y skills add a5c-ai/babysitter --skill npm-publish-configAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
SKILL.md
1.1 KB, 173 tokens by cl100k_base, as published. Nobody here has run it
NPM Publish Config
Configure npm publishing for CLI packages.
Generated Patterns
{
"name": "@myorg/mycli",
"version": "1.0.0",
"bin": { "mycli": "./dist/index.js" },
"files": ["dist", "README.md", "LICENSE"],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": { "node": ">=18" },
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"prepublishOnly": "npm run build && npm test"
}
}
Target Processes
- package-manager-publishing
- cli-binary-distribution
What ships with it: 1 file
143 B alongside SKILL.md
- README.md143 B