initsea-js
Version:
JavaScript SDK for the OpenSea marketplace. Let users buy or sell crypto collectibles and other cryptogoods, all on your own site!
109 lines (108 loc) • 3.66 kB
JSON
{
"name": "initsea-js",
"version": "4.0.29",
"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\"",
"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": {
"initseaport-31": "1.0.2",
"ajv": "^8.11.0",
"bignumber.js": "9.0.2",
"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",
"web3": "1.7.0",
"wyvern-js": "git+https://github.com/ProjectOpenSea/wyvern-js.git#d283749f3d983a9c9e2e4da925441f75e170c9f0",
"wyvern-schemas": "git+https://github.com/ProjectOpenSea/wyvern-schemas.git#3290fc095649f5552b560bfcb1f0fa49acf13894"
},
"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"
]
}
}