UNPKG

@stoar/cli

Version:

CLI tool for STOAR - decentralized file storage on Arweave

72 lines 1.7 kB
{ "name": "@stoar/cli", "version": "0.1.2", "description": "CLI tool for STOAR - decentralized file storage on Arweave", "type": "module", "bin": { "stoar": "./dist/index.js" }, "scripts": { "build": "tsc", "dev": "tsc --watch", "test": "vitest", "test:watch": "vitest --watch", "lint": "eslint src --ext .ts", "typecheck": "tsc --noEmit", "postinstall": "node scripts/postinstall.js", "prepublishOnly": "bun run build" }, "keywords": [ "stoar", "arweave", "cli", "storage", "blockchain", "decentralized" ], "author": "STOAR Team", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/micovi/stoar", "directory": "packages/stoar-cli" }, "bugs": { "url": "https://github.com/micovi/stoar/issues" }, "homepage": "https://github.com/micovi/stoar/tree/main/packages/stoar-cli#readme", "files": [ "dist", "scripts", "README.md", "LICENSE", "CHANGELOG.md" ], "dependencies": { "@dha-team/arbundles": "latest", "@stoar/sdk": "^0.1.2", "arweave": "^1.15.7", "chalk": "^5.3.0", "chokidar": "^3.5.3", "cli-table3": "^0.6.3", "commander": "^11.0.0", "dotenv": "^16.3.1", "glob": "^10.3.0", "inquirer": "^9.2.0", "ora": "^7.0.1", "update-notifier": "^6.0.2" }, "devDependencies": { "@types/node": "^20.10.0", "@types/inquirer": "^9.0.3", "@types/update-notifier": "^6.0.5", "typescript": "^5.3.2", "vitest": "^1.0.4", "eslint": "^8.54.0", "@typescript-eslint/eslint-plugin": "^6.12.0", "@typescript-eslint/parser": "^6.12.0" }, "engines": { "node": ">=18.0.0" } }