@graphprotocol/graph-cli
Version:
CLI for building for and deploying to The Graph
90 lines • 2.4 kB
JSON
{
"name": "@graphprotocol/graph-cli",
"version": "0.68.0-alpha-20240208230340-9ea4027",
"description": "CLI for building for and deploying to The Graph",
"license": "(Apache-2.0 OR MIT)",
"engines": {
"node": ">=18"
},
"bin": {
"graph": "bin/run"
},
"main": "dist/index.js",
"files": [
"CHANGELOG.md",
"bin",
"dist",
"oclif.manifest.json",
"README.md",
"!dist/*.tar.gz"
],
"dependencies": {
"@float-capital/float-subgraph-uncrashable": "^0.0.0-alpha.4",
"@oclif/core": "2.8.6",
"@oclif/plugin-autocomplete": "^2.3.6",
"@oclif/plugin-not-found": "^2.4.0",
"@whatwg-node/fetch": "^0.8.4",
"assemblyscript": "0.19.23",
"binary-install-raw": "0.0.13",
"chalk": "3.0.0",
"chokidar": "3.5.3",
"debug": "4.3.4",
"docker-compose": "0.23.19",
"dockerode": "2.5.8",
"fs-extra": "9.1.0",
"glob": "9.3.5",
"gluegun": "5.1.6",
"graphql": "15.5.0",
"immutable": "4.2.1",
"ipfs-http-client": "55.0.0",
"jayson": "4.0.0",
"js-yaml": "3.14.1",
"prettier": "3.0.3",
"semver": "7.4.0",
"sync-request": "6.1.0",
"tmp-promise": "3.0.3",
"web3-eth-abi": "1.7.0",
"which": "2.0.2",
"yaml": "1.10.2"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/fs-extra": "^9.0.13",
"@types/js-yaml": "^3.12.7",
"@types/semver": "^7.3.13",
"@types/which": "^2.0.1",
"copyfiles": "^2.4.1",
"oclif": "3.8.1",
"spawn-command": "0.0.2-1",
"strip-ansi": "6.0.1",
"tern": "0.24.3",
"typescript": "^5.0.0",
"vitest": "^1.0.2"
},
"publishConfig": {
"access": "public"
},
"oclif": {
"bin": "graph",
"commands": "./dist/commands",
"additionalHelpFlags": [
"-h"
],
"additionalVersionFlags": [
"-v"
],
"plugins": [
"@oclif/plugin-not-found",
"@oclif/plugin-autocomplete"
]
},
"scripts": {
"build": "tsc -b tsconfig.build.json && oclif manifest && oclif readme && copyfiles -u 1 src/**/*.graphql dist/",
"oclif:pack": "npm pack && pnpm oclif pack tarballs --no-xz && node scripts/rename-tarballs.mjs",
"test": "vitest run --bail=1",
"test:add": "vitest run tests/cli/add.test.ts",
"test:init": "vitest run tests/cli/init.test.ts",
"test:validation": "vitest run tests/cli/validation.test.ts",
"type-check": "tsc --noEmit"
}
}