{
  "name": "fuelchain",
  "version": "0.24.2",
  "description": "🔌 FuelChain is a fork from TypeChain",
  "author": "Fuel Labs <contact@fuel.sh> (https://fuel.network/)",
  "license": "Apache-2.0",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": "./dist/cli/cli.js",
  "files": [
    "dist/**/*"
  ],
  "dependencies": {
    "@types/prettier": "^2.7.1",
    "debug": "^4.3.4",
    "fs-extra": "^10.1.0",
    "glob": "8.0.3",
    "js-sha3": "^0.8.0",
    "lodash": "^4.17.21",
    "mkdirp": "^1.0.4",
    "prettier": "^2.7.1",
    "ts-command-line-args": "^2.3.1",
    "ts-essentials": "^9.3.0"
  },
  "devDependencies": {
    "@types/bluebird": "^3.5.37",
    "@types/command-line-args": "^5.2.0",
    "@types/debug": "^4.1.7",
    "@types/fs-extra": "^9.0.13",
    "@types/glob": "^8.0.0",
    "@types/lodash": "^4.14.186",
    "@types/mkdirp": "^1.0.2",
    "@types/node": "^18.11.4",
    "bluebird": "^3.7.2",
    "coveralls": "^3.1.1"
  },
  "peerDependencies": {
    "typescript": "^4.5.2"
  },
  "scripts": {
    "format": "prettier --config ../../.prettierrc --ignore-path ../../.prettierignore --check \"./**/*.ts\"",
    "format:fix": "prettier --config ../../.prettierrc --ignore-path ../../.prettierignore --write \"./**/*.ts\"",
    "lint": "eslint --ext .ts src test",
    "lint:fix": "pnpm lint --fix",
    "typecheck": "tsc --noEmit --incremental false --composite false",
    "clean": "rm -rf dist && rm -f tsconfig.build.tsbuildinfo",
    "build": "tsc --build --verbose ./tsconfig.build.json && pnpm run post-build",
    "post-build": "ts-node scripts/post-build"
  }
}