forked from ProjectOpenSea/seaport-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.75 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
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@opensea/seaport-js",
"version": "1.1.0",
"description": "[Seaport](https://github.com/ProjectOpenSea/seaport) is a new marketplace protocol for safely and efficiently buying and selling NFTs. This is a JavaScript library intended to make interfacing with the contract reasonable and easy.",
"license": "MIT",
"author": "OpenSea Developers",
"homepage": "https://github.com/ProjectOpenSea/seaport-js#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ProjectOpenSea/seaport-js.git"
},
"bugs": {
"url": "https://github.com/ProjectOpenSea/seaport-js/issues"
},
"main": "lib/index.js",
"files": [
"lib"
],
"directories": {
"doc": "docs",
"lib": "lib"
},
"scripts": {
"build": "hardhat compile && tsc -p tsconfig.build.json",
"check-types": "tsc --noEmit -p src/__tests__/tsconfig.json",
"check-types:incremental": "npm run check-types --incremental",
"coverage": "c8 yarn test",
"eslint:check": "eslint . --max-warnings 0 --ext .js,.jsx,.ts,.tsx",
"lint": "concurrently \"npm run check-types\" \"npm run eslint:check\" \"npm run prettier:check\" \"npm run prettier:check:package.json\"",
"prepare": "husky install && npm run build",
"prettier:check": "prettier --check .",
"prettier:check:package.json": "prettier-package-json --list-different",
"prettier:fix": "prettier --write .",
"test": "hardhat test"
},
"types": "lib/index.d.ts",
"resolutions": {
"minimist": ">=1.2.6",
"json-schema": ">=0.4.0",
"underscore": ">=1.12.1",
"undici": ">=5.8.2",
"simple-get": ">=2.8.2",
"tar": ">=4.4.18",
"normalize-url": ">=4.5.1",
"async": ">=2.6.4",
"node-fetch": ">=2.6.7",
"lodash": ">=4.17.21",
"got": ">=11.8.5",
"cross-fetch": ">=2.2.6",
"ws": ">=5.2.3",
"path-parse": ">=1.0.7",
"elliptic": ">=6.5.4",
"yargs-parser": ">=5.0.1",
"minimatch": ">=3.0.5"
},
"dependencies": {
"@0xsequence/multicall": "^0.39.0",
"ethers": "^5.6.7",
"merkletreejs": "^0.3.9"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@rari-capital/solmate": "^6.2.0",
"@typechain/ethers-v5": "^9.0.0",
"@typechain/hardhat": "^5.0.0",
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^9.1.1",
"@types/node": "^12.20.47",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"c8": "^7.11.3",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"concurrently": "^7.1.0",
"domain-registry": "ProjectOpenSea/domain-registry.git#70a5cb3dc919a13660dd83518fb2ab070009cce6",
"dotenv": "^10.0.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^6.0.0",
"ethereum-waffle": "^3.4.4",
"hardhat": "^2.9.1",
"hardhat-gas-reporter": "^1.0.8",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "^2.5.1",
"prettier-package-json": "^2.6.3",
"prettier-plugin-solidity": "^1.0.0-beta.13",
"seaport": "ProjectOpenSea/seaport#76e508657888e3ec84039e1da269c822826991ef",
"seaport_v1_4": "ProjectOpenSea/seaport#1.4",
"sinon": "^13.0.1",
"sinon-chai": "^3.7.0",
"solhint": "^3.3.7",
"solidity-coverage": "^0.7.20",
"ts-node": "^10.7.0",
"typechain": "^7.0.1",
"typescript": "^4.6.2"
},
"engines": {
"node": ">=14.0.0"
},
"lint-staged": {
"package.json": [
"prettier-package-json --write",
"git add"
],
"**/*.{ts,tsx,js,jsx,html,md,mdx,yml,json}": [
"prettier --write"
]
}
}