{
  "name": "dot-bridge-contracts",
  "version": "0.1.7",
  "description": "A demo sCrypt smart contract.",
  "author": "",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "scripts": {
    "prebuild": "npm run clean",
    "build": "tsc",
    "deploy": "npx ts-node ./deploy.ts",
    "clean": "rimraf scrypt.index.json && rimraf dist && rimraf artifacts",
    "compile": "npx scrypt-cli@latest compile",
    "pretest": "npm run build && npm run compile",
    "test": "npm run test:mocha",
    "test:mocha": "cross-env NETWORK=local mocha",
    "pretest:testnet": "npm run build && npm run compile",
    "test:testnet": "cross-env NETWORK=testnet mocha --no-timeouts",
    "genprivkey": "npx ts-node tests/utils/privateKey.ts",
    "lint": "eslint . --ext .js,.ts --fix && prettier --write --ignore-unknown \"**/*\"",
    "lint-check": "eslint . --ext .js,.ts && prettier --check --ignore-unknown \"**/*\"",
    "prepare": "husky install",
    "prepublishOnly": "npm run build && npm run compile"
  },
  "lint-staged": {
    "**/*": [
      "prettier --write --ignore-unknown"
    ],
    "**/*.{ts,js}": [
      "eslint --cache --fix"
    ]
  },
  "dependencies": {
    "dotenv": "^16.0.3",
    "scrypt-ord": "^1.0.17",
    "scrypt-ts": "^1.3.29",
    "scrypt-ts-lib": "^0.1.28"
  },
  "devDependencies": {
    "@types/chai": "^4.3.4",
    "@types/chai-as-promised": "^7.1.5",
    "@types/mocha": "^10.0.0",
    "@types/node": "^18.11.10",
    "@typescript-eslint/eslint-plugin": "^6.5.0",
    "@typescript-eslint/parser": "^6.5.0",
    "chai": "^4.3.6",
    "chai-as-promised": "^7.1.1",
    "cross-env": "^7.0.3",
    "eslint": "^8.48.0",
    "eslint-config-prettier": "^8.6.0",
    "husky": "^8.0.3",
    "lint-staged": "^13.1.0",
    "mocha": "^10.1.0",
    "prettier": "^2.8.2",
    "rimraf": "^3.0.2",
    "ts-node": "^10.9.1",
    "typescript": "^5.1.6"
  },
  "license": "MIT"
}
