b17d0080ee
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
47 lines
929 B
JSON
47 lines
929 B
JSON
{
|
|
"name": "arcrun",
|
|
"version": "1.3.5",
|
|
"description": "AI Workflow CLI for arcrun — self-host WASM-based AI workflows on your own Cloudflare",
|
|
"bin": {
|
|
"acr": "dist/index.js"
|
|
},
|
|
"main": "./dist/index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"prepublishOnly": "npm run build && chmod +x dist/index.js"
|
|
},
|
|
"dependencies": {
|
|
"chalk": "^5.3.0",
|
|
"commander": "^12.0.0",
|
|
"js-yaml": "^4.1.0",
|
|
"ora": "^8.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/js-yaml": "^4.0.9",
|
|
"@types/node": "^20.0.0",
|
|
"typescript": "^5.4.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"files": [
|
|
"dist/",
|
|
"harness/"
|
|
],
|
|
"keywords": [
|
|
"cloudflare",
|
|
"workers",
|
|
"wasm",
|
|
"workflow",
|
|
"ai",
|
|
"arcrun"
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/uncle6me-web/Arcrun.git"
|
|
}
|
|
}
|