{
  "name": "@bthn/opensea-js-seaport",
  "version": "0.0.1",
  "description": "JavaScript SDK for the OpenSea marketplace. Let users buy or sell crypto collectibles and other cryptogoods, all on your own site!",
  "license": "MIT",
  "author": "OpenSea Developers",
  "homepage": "https://docs.opensea.io/v1.0/reference",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ProjectOpenSea/opensea-js.git"
  },
  "bugs": {
    "url": "https://github.com/ProjectOpenSea/opensea-js/issues"
  },
  "main": "lib/index.js",
  "files": [
    "lib"
  ],
  "scripts": {
    "abi-type-gen": "yarn run typechain --target=web3-v1 src/abi/*.json --out-dir=src/typechain/contracts",
    "build": "yarn abi-type-gen && tsc -p tsconfig.build.json",
    "check-types": "tsc --noEmit --project tsconfig.json",
    "coverage-report": "nyc report --reporter=text-lcov | coveralls",
    "docs-build": "typedoc --out docs src/index.ts",
    "eslint:check": "eslint . --max-warnings 0 --ext .js,.ts",
    "lint:check": "concurrently \"yarn check-types\" \"yarn prettier:check\" \"yarn eslint:check\"",
    "prepare": "husky install && npm run build",
    "test": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' TS_NODE_TRANSPILE_ONLY=true nyc mocha -r ts-node/register src/__tests__/**/*.ts --timeout 15000",
    "prettier:check": "prettier --check .",
    "prettier:check:package.json": "yarn prettier-package-json --list-different",
    "prettier:fix": "prettier --write ."
  },
  "types": "lib/index.d.ts",
  "dependencies": {
    "ajv": "^8.11.0",
    "bignumber.js": "9.0.1",
    "ethereumjs-abi": "git+https://github.com/ProjectWyvern/ethereumjs-abi.git",
    "ethereumjs-util": "^5.2.0",
    "ethers": "^5.6.6",
    "fbemitter": "2.1.1",
    "isomorphic-unfetch": "^2.1.1",
    "lodash": "^4.17.21",
    "query-string": "^6.11.1",
    "seaport-js": "git+https://github.com/ProjectOpenSea/seaport-js.git#1f285ec3594446f5fb1754bed0bd056037b812fd",
    "web3": "1.7.0",
    "wyvern-js": "git+https://github.com/ProjectOpenSea/wyvern-js.git#7823dfdf5a272ebbc6a46e66d23563a9d6cc1be2",
    "wyvern-schemas": "git+https://github.com/ProjectOpenSea/wyvern-schemas.git#0a8d569931ddb6faa6e96f5a60fa2f83f0a8750e"
  },
  "devDependencies": {
    "@typechain/web3-v1": "^5.0.0",
    "@types/chai": "4.3.0",
    "@types/chai-as-promised": "^7.1.5",
    "@types/fbemitter": "^2.0.32",
    "@types/lodash": "^4.14.178",
    "@types/mocha": "^9.0.0",
    "@types/node": "^9.3.0",
    "@types/query-string": "^6.1.0",
    "@typescript-eslint/eslint-plugin": "^5.7.0",
    "@typescript-eslint/parser": "^5.7.0",
    "chai": "4.3.4",
    "chai-as-promised": "^7.1.1",
    "concurrently": "6.5.1",
    "confusing-browser-globals": "^1.0.11",
    "coveralls": "^3.1.1",
    "eslint": "^8.4.1",
    "eslint-config-prettier": "^8.3.0",
    "eslint-import-resolver-typescript": "^2.5.0",
    "eslint-plugin-import": "^2.25.3",
    "eslint-plugin-jest": "^25.3.0",
    "eslint-plugin-prettier": "^4.0.0",
    "ethereum-types": "^3.6.0",
    "husky": "7.0.4",
    "lint-staged": "12.1.2",
    "mocha": "^9.1.3",
    "nyc": "^15.1.0",
    "prettier": "2.5.1",
    "prettier-package-json": "2.6.0",
    "ts-node": "10.4.0",
    "typechain": "^7.0.0",
    "typedoc": "0.22.10",
    "types-bn": "^0.0.1",
    "types-ethereumjs-util": "0.0.8",
    "typescript": "4.5.4"
  },
  "keywords": [
    "collectibles",
    "crypto",
    "ethereum",
    "javascript",
    "marketplace",
    "nft",
    "node",
    "non-fungible-tokens",
    "project-opensea",
    "sdk",
    "smart-contracts"
  ],
  "lint-staged": {
    "package.json": [
      "prettier-package-json --write"
    ],
    "**/*.{ts,tsx,js,jsx,html,md,mdx,yml,json}": [
      "prettier --write"
    ],
    "**/*.{ts,tsx,js,jsx}": [
      "eslint --cache --fix"
    ]
  }
}
