{
  "name": "scrypt-ts-lib",
  "version": "0.1.28",
  "description": "A collection of smart contract libraries for `scrypt-ts`.",
  "types": "dist/index.d.ts",
  "main": "dist/index.js",
  "scripts": {
    "prebuild": "npm run clean",
    "build": "tsc",
    "clean": "rimraf dist && rimraf artifacts",
    "compile": "npx scrypt-cli@latest compile --asm",
    "compileTest": "cd tests && npx scrypt-cli@latest compile",
    "compileAllTest": "cd tests && npx scrypt-cli@latest compile -e=\"1\"",
    "pretest": "npm run build && npm run compile && npm run compileTest",
    "test": "cd tests && mocha -i -f 'Heavy'",
    "pretest-all": "npm run build && npm run compile && npm run compileAllTest",
    "test-all": "cd tests && mocha",
    "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"
    ]
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sCrypt-Inc/scrypt-ts-lib.git"
  },
  "keywords": [
    "scrypt-ts"
  ],
  "author": "sCrypt.Inc",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/sCrypt-Inc/scrypt-ts-lib/issues"
  },
  "homepage": "https://github.com/sCrypt-Inc/scrypt-ts-lib#readme",
  "dependencies": {
    "rabinsig": "^4.2.1",
    "scrypt-ts": "^1.3.2"
  },
  "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": "^5.48.1",
    "@typescript-eslint/parser": "^5.48.1",
    "bigint-rnd": "^1.0.2",
    "chai": "^4.3.6",
    "chai-as-promised": "^7.1.1",
    "circomlibjs": "^0.1.7",
    "cross-env": "^7.0.3",
    "eslint": "^8.31.0",
    "eslint-config-prettier": "^8.6.0",
    "husky": "^8.0.3",
    "lint-staged": "^13.1.0",
    "mocha": "^10.2.0",
    "prettier": "^2.8.2",
    "rimraf": "^3.0.2",
    "ts-node": "^10.9.1",
    "typescript": "^5.3.3"
  }
}
