forked from ProjectOpenSea/opensea-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.47 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "opensea-js",
"version": "3.0.4",
"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": {
"bignumber.js": "9.0.1",
"ethereumjs-abi": "git+https://github.com/ProjectWyvern/ethereumjs-abi.git",
"ethereumjs-util": "^5.2.0",
"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#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/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",
"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"
]
}
}