diff --git a/cli/package.json b/cli/package.json index 5f4d9cc..f00afcd 100644 --- a/cli/package.json +++ b/cli/package.json @@ -1,16 +1,16 @@ { "name": "arcrun", - "version": "1.0.0", + "version": "1.0.1", "description": "AI Workflow CLI for arcrun — deploy and run WASM-based AI workflows on Cloudflare", "bin": { - "acr": "./dist/index.js" + "acr": "dist/index.js" }, "main": "./dist/index.js", "type": "module", "scripts": { "build": "tsc", "dev": "tsc --watch", - "prepublishOnly": "npm run build" + "prepublishOnly": "npm run build && chmod +x dist/index.js" }, "dependencies": { "chalk": "^5.3.0", @@ -26,10 +26,20 @@ "engines": { "node": ">=18.0.0" }, - "keywords": ["cloudflare", "workers", "wasm", "workflow", "ai", "arcrun"], + "files": [ + "dist/" + ], + "keywords": [ + "cloudflare", + "workers", + "wasm", + "workflow", + "ai", + "arcrun" + ], "license": "MIT", "repository": { "type": "git", - "url": "https://github.com/arcrun/arcrun.git" + "url": "git+https://github.com/richblack/arcrun.git" } }