@goldskycom/cli
Version:
The Goldsky CLI to deploy subgraphs, index & transform blockchain data, configure webhooks, and access your data in real-time.
75 lines • 2.45 kB
JSON
{
"name": "@goldskycom/cli",
"version": "12.0.0",
"description": "The Goldsky CLI to deploy subgraphs, index & transform blockchain data, configure webhooks, and access your data in real-time.",
"main": "dist/index.js",
"keywords": [
"goldsky",
"web3",
"blockchain",
"real-time",
"data pipelines",
"streams",
"webhooks"
],
"author": "Goldsky",
"bin": {
"goldsky": "bin/goldsky"
},
"files": [
"bin/goldsky",
"dist"
],
"devDependencies": {
"@aws-sdk/abort-controller": "^3.272.0",
"@aws-sdk/client-s3": "^3.272.0",
"@clack/prompts": "^0.7.0",
"@sinclair/typebox": "^0.32.34",
"@types/cli-progress": "^3.11.0",
"@types/form-data": "^2.5.0",
"@types/jszip": "^3.4.1",
"@types/node": "^18.15.0",
"@types/readline-sync": "^1.4.4",
"@types/semver": "^7.5.1",
"@types/yaml": "^1.9.7",
"@types/yargs": "^17.0.7",
"abitype": "0.1.7",
"ajv": "^8.11.2",
"axios": "^1.4.0",
"chalk": "^4.1.2",
"cli-progress": "^3.12.0",
"conf": "10.2.0",
"form-data": "^4.0.0",
"jszip": "^3.7.1",
"ora": "4.1.1",
"pkg": "^5.7.0",
"s3-sync-client": "^4.3.1",
"semver": "^7.3.7",
"simple-update-notifier": "^2.0.0",
"table": "^6.8.1",
"typescript": "^5.3.3",
"yaml": "^1.10.2",
"yargs": "^17.7.2",
"@goldskyio/core": "1.0.0"
},
"license": "",
"dependencies": {
"cuid": "^2.1.8",
"parse-duration": "^1.0.3",
"readline-sync": "^1.4.10",
"timeago.js": "^4.0.2"
},
"scripts": {
"binaries:build": "pnpm build && rimraf ./binaries && node ./scripts/binaries-build.js",
"binaries:deploy": "node ./scripts/binaries-deploy.js",
"build": "pnpm clean && tsc --noEmit --skipLibCheck && node ./scripts/build.js && chmod a+x bin/goldsky",
"clean": "rimraf ./binaries ./dist ./tsconfig.tsbuildinfo",
"dev": "NODE_ENV=development ts-node src/index.ts",
"docs:reference:generate": "pnpm build && GOLDSKY_PARSE_CLI_OUTPUT_FOR_DOCS=true ts-node ./scripts/reference-docs/index.ts",
"docs:reference:copy": "test -f ./cli-reference.md && test -f ../../../docs/reference/cli.mdx && cp ./cli-reference.md ../../../docs/reference/cli.mdx",
"docs:reference:update": "pnpm docs:reference:generate && pnpm docs:reference:copy",
"lint": "eslint --max-warnings 0 .",
"lint:summary": "pnpm lint --format summary || pnpm lint",
"typecheck": "tsc --noEmit"
}
}