{
  "name": "@algorand-builder/runtime",
  "version": "0.1.2",
  "contributors": [
    {
      "name": "Robert Zaremba",
      "url": "https://github.com/robert-zaremba"
    },
    {
      "name": "Amit Yadav",
      "url": "https://github.com/amityadav0"
    },
    {
      "name": "Ratik Jindal",
      "url": "https://github.com/ratik21"
    }
  ],
  "license": "Apache-2.0",
  "repository": "https://github.com/scale-it/algo-builder.git",
  "description": "Algorand runtime (transaction execution + TEAL interpreter)",
  "keywords": [
    "smart-contracts",
    "blockchain",
    "algorand",
    "dapps",
    "javascript",
    "tooling"
  ],
  "main": "build/index.js",
  "types": "build/index.d.ts",
  "bin": {
    "algod-js": "build/algod.js"
  },
  "engines": {
    "node": ">=14.11.0"
  },
  "scripts": {
    "lint": "eslint --ext .js,.ts src test",
    "lint:fix": "eslint --fix --ext .js,.ts src test",
    "lint:unix": "eslint --format unix --ext .js,.ts src test",
    "test": "mocha",
    "coverage": "nyc ../../node_modules/mocha/bin/mocha",
    "build": "tsc --build .",
    "build:watch": "tsc -w -p .",
    "build:docs": "typedoc --out docs --exclude \"internal/**\"  src",
    "clean": "rimraf builtin-tasks internal *.d.ts *.map *.js tsconfig.tsbuildinfo build",
    "prepublish": "yarn build",
    "publish": "npm publish --access public"
  },
  "files": [
    "build/",
    "LICENSE",
    "README.md"
  ],
  "devDependencies": {
    "@types/chai": "^4.2.12",
    "@types/glob": "^7.1.2",
    "@types/murmurhash": "0.0.1",
    "@types/sinon": "^9.0.4",
    "chai": "^4.2.0",
    "glob": "^7.1.6",
    "nyc": "^15.1.0",
    "sinon": "^9.0.2"
  },
  "dependencies": {
    "@types/lodash.clonedeep": "^4.5.6",
    "algosdk": "algorand/js-algorand-sdk.git#9a5824782511dff1f521c68fe54d562b3872d1ae",
    "glob": "^7.1.6",
    "js-sha256": "^0.9.0",
    "js-sha512": "^0.8.0",
    "lodash.clonedeep": "^4.5.0",
    "murmurhash": "^1.0.0",
    "sha3": "^2.1.3",
    "source-map-support": "^0.5.19",
    "tweetnacl-ts": "^1.0.3",
    "types": "^0.1.0"
  },
  "nyc": {
    "extension": [
      ".ts"
    ],
    "exclude": [
      "build",
      "test",
      "coverage",
      ".nyc_output"
    ],
    "reporter": [
      "text",
      "lcovonly"
    ],
    "all": true
  }
}
