2021-04-23 16:16:35 +02:00
|
|
|
{
|
2025-05-12 16:44:07 +02:00
|
|
|
"name": "codex-factory",
|
2025-04-14 16:54:35 +02:00
|
|
|
"description": "Orchestration CLI for spinning up local development Codex cluster with Docker",
|
2025-05-12 17:15:09 +02:00
|
|
|
"version": "1.0.0",
|
2025-05-07 16:37:54 +02:00
|
|
|
"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": {
|
2025-05-12 16:44:07 +02:00
|
|
|
"node": ">=20.0.0",
|
2025-05-07 16:37:54 +02:00
|
|
|
"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",
|
2022-04-29 15:51:09 +02:00
|
|
|
"keywords": [
|
2025-05-07 16:37:54 +02:00
|
|
|
"oclif",
|
2025-04-14 16:54:35 +02:00
|
|
|
"codex",
|
|
|
|
|
"codex-storage",
|
2022-04-29 15:51:09 +02:00
|
|
|
"decentralised",
|
|
|
|
|
"storage",
|
|
|
|
|
"typescript",
|
|
|
|
|
"p2p",
|
|
|
|
|
"docker"
|
|
|
|
|
],
|
|
|
|
|
"license": "BSD-3-Clause",
|
2025-05-07 16:37:54 +02:00
|
|
|
"main": "./dist/index.js",
|
|
|
|
|
"type": "module",
|
|
|
|
|
"oclif": {
|
|
|
|
|
"bin": "codex-factory",
|
|
|
|
|
"dirname": "codex-factory",
|
|
|
|
|
"commands": "./dist/commands",
|
|
|
|
|
"plugins": [
|
|
|
|
|
"@oclif/plugin-help"
|
|
|
|
|
],
|
|
|
|
|
"topicSeparator": " ",
|
|
|
|
|
"topics": {}
|
2022-04-29 15:51:09 +02:00
|
|
|
},
|
2025-05-07 16:37:54 +02:00
|
|
|
"repository": "https://github.com/codex-storage/codex-factory/",
|
2021-04-23 16:16:35 +02:00
|
|
|
"scripts": {
|
2025-05-07 16:37:54 +02:00
|
|
|
"start": "bin/dev.js",
|
|
|
|
|
"build": "shx rm -rf dist && tsc -b",
|
|
|
|
|
"lint": "eslint",
|
|
|
|
|
"postpack": "shx rm -f oclif.manifest.json",
|
2025-05-12 16:44:07 +02:00
|
|
|
"prepare": "npm run build",
|
2025-05-07 16:37:54 +02:00
|
|
|
"prepack": "oclif manifest && oclif readme",
|
2025-05-12 16:44:07 +02:00
|
|
|
"test": "mocha --forbid-only \"test/**/*.test.ts\""
|
2022-04-29 15:51:09 +02:00
|
|
|
},
|
2025-05-07 16:37:54 +02:00
|
|
|
"types": "dist/index.d.ts"
|
2022-07-11 11:56:48 +02:00
|
|
|
}
|