chore: prepare for npm publish
Amolith
created
- Remove 'private': true to allow publishing
- Add description, license (MIT), and files whitelist
Change summary
package.json | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
Detailed changes
@@ -1,11 +1,17 @@
{
"name": "rumilo",
"version": "0.1.0",
- "private": true,
+ "description": "CLI that dispatches AI research subagents for web and git repository exploration",
+ "author": "",
+ "license": "MIT",
"type": "module",
"bin": {
"rumilo": "./dist/index.js"
},
+ "files": [
+ "dist/",
+ "README.md"
+ ],
"scripts": {
"dev": "bun src/cli/index.ts",
"build": "bun build src/cli/index.ts --outdir dist --target=node",