{
  "name": "@c4tplatform/avalanche",
  "version": "0.0.1",
  "description": "Avalanche Platform JS Library",
  "main": "dist/index.js",
  "scripts": {
    "build-linux": "rm -rf dist/ && npx tsc -b && cp -r typings/src ./dist",
    "build": "del /S /Q dist\\ && npx tsc -b && xcopy /S typings\\src .\\dist",
    "prebundle": "yarn build",
    "bundle": "webpack --mode production",
    "lint": "eslint ./ --ext js,ts --fix",
    "prepublish": "yarn build",
    "release:prepare": "rm -rf ./dist ./node_modules && yarn install && yarn build && yarn bundle && yarn test && git status",
    "test": "jest",
    "test-watch": "jest --watch",
    "docshtml": "npx typedoc --plugin typedoc-plugin-external-module-name --mode file src",
    "docsmd": "npx typedoc --readme none --plugin typedoc-plugin-markdown,typedoc-plugin-external-module-name --theme markdown --out docsMD src",
    "docs": "yarn docshtml && yarn docsmd",
    "prettier-src": "prettier --write ./src",
    "prettier-examples": "prettier --write ./examples",
    "prettier-tests": "prettier --write ./tests",
    "prettier-web": "prettier --write ./web",
    "prettier-mocks": "prettier --write ./__mocks__",
    "prettier": "yarn prettier-src && yarn prettier-examples && yarn prettier-tests && yarn prettier-mocks",
    "prepare": "husky install"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ava-labs/avalanchejs.git"
  },
  "keywords": [
    "Avalanche",
    "blockchain",
    "defi"
  ],
  "author": "Gabriel Cardona <gabriel@avalabs.org>",
  "contributors": [
    "Evan Richard <evan@avalabs.org>",
    "Paul Kim <paul.kim@avalabs.org>",
    "Dhruba Basu <dhruba@avalabs.org>"
  ],
  "license": "BSD-3-Clause",
  "bugs": {
    "url": "https://github.com/ava-labs/avalanchejs/issues"
  },
  "homepage": "https://github.com/ava-labs/avalanchejs#readme",
  "devDependencies": {
    "@types/bech32": "1.1.4",
    "@types/bn.js": "5.1.0",
    "@types/create-hash": "1.2.2",
    "@types/hdkey": "2.0.0",
    "@types/jest": "27.0.3",
    "@types/node": "16.11.9",
    "@typescript-eslint/eslint-plugin": "4.33.0",
    "@typescript-eslint/parser": "4.33.0",
    "clean-webpack-plugin": "4.0.0",
    "eslint": "7.32.0",
    "eslint-config-prettier": "8.3.0",
    "eslint-plugin-prettier": "4.0.0",
    "eslint-plugin-security": "1.4.0",
    "git-revision-webpack-plugin": "5.0.0",
    "html-webpack-plugin": "5.5.0",
    "husky": "7.0.4",
    "jest": "26.6.3",
    "jest-mock-axios": "4.4.1",
    "prettier": "2.4.1",
    "terser-webpack-plugin": "5.2.5",
    "ts-jest": "26.5.6",
    "ts-loader": "9.2.6",
    "typedoc": "^0.18.0",
    "typedoc-plugin-external-module-name": "^4.0.3",
    "typedoc-plugin-markdown": "^2.4.0",
    "typescript": "4.5.2",
    "webpack": "5.64.2",
    "webpack-cli": "4.9.1"
  },
  "engines": {
    "node": ">=14.18.0"
  },
  "dependencies": {
    "assert": "2.0.0",
    "axios": "0.24.0",
    "bech32": "2.0.0",
    "bip39": "3.0.4",
    "bn.js": "5.2.0",
    "buffer": "^6.0.3",
    "create-hash": "1.2.0",
    "crypto-browserify": "3.12.0",
    "elliptic": "6.5.4",
    "ethers": "5.5.1",
    "hdkey": "2.0.1",
    "isomorphic-dompurify": "^0.16.0",
    "isomorphic-ws": "4.0.1",
    "store2": "2.12.0",
    "stream-browserify": "3.0.0",
    "ws": "8.2.3"
  },
  "prettier": {
    "tabWidth": 2,
    "useTabs": false,
    "semi": false,
    "singleQuote": false,
    "jsxBracketSameLine": false,
    "trailingComma": "none"
  },
  "directories": {
    "example": "examples",
    "test": "tests"
  }
}
