{ "name": "codex-factory", "description": "Orchestration CLI for spinning up local development Codex cluster with Docker", "version": "0.1.0", "author": "Codex Authors", "bin": { "codex-factory": "bin/run.js" }, "bugs": "https://github.com/codex-storage/codex-factory/issues", "dependencies": { "@codex-storage/sdk-js": "^0.1.2", "@oclif/core": "^4", "@oclif/plugin-help": "^6", "chalk": "^4.1.2", "dockerode": "^4", "node-fetch": "^3", "ora": "^8", "semver": "^7" }, "devDependencies": { "@eslint/compat": "^1", "@oclif/prettier-config": "^0.2.1", "@oclif/test": "^4", "@types/chai": "^4", "@types/chai-as-promised": "^8.0.2", "@types/dockerode": "^3.3.38", "@types/mocha": "^10", "@types/node": "^18", "@types/node-fetch": "^2.6.12", "@types/semver": "^7.7.0", "chai": "^4", "chai-as-promised": "^8.0.1", "eslint": "^9", "eslint-config-oclif": "^6", "eslint-config-prettier": "^10", "mocha": "^10", "oclif": "^4", "shx": "^0.3.3", "ts-node": "^10", "typescript": "^5" }, "engines": { "node": ">=20.0.0", "npm": ">=6.0.0", "codex": "0.2.1", "supportedCodex": ">0.2.0" }, "files": [ "bin", "./dist", "./oclif.manifest.json" ], "homepage": "https://github.com/codex-storage/codex-factory", "keywords": [ "oclif", "codex", "codex-storage", "decentralised", "storage", "typescript", "p2p", "docker" ], "license": "BSD-3-Clause", "main": "./dist/index.js", "type": "module", "oclif": { "bin": "codex-factory", "dirname": "codex-factory", "commands": "./dist/commands", "plugins": [ "@oclif/plugin-help" ], "topicSeparator": " ", "topics": {} }, "repository": "https://github.com/codex-storage/codex-factory/", "scripts": { "start": "bin/dev.js", "build": "shx rm -rf dist && tsc -b", "lint": "eslint", "postpack": "shx rm -f oclif.manifest.json", "prepare": "npm run build", "prepack": "oclif manifest && oclif readme", "test": "mocha --forbid-only \"test/**/*.test.ts\"" }, "types": "dist/index.d.ts" }