forked from ProjectOpenSea/seaport-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 3.06 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
{
"name": "@opensea/seaport-js",
"version": "1.0.2",
"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",
"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",
"test": "hardhat test",
"prettier:check": "prettier --check .",
"prettier:check:package.json": "prettier-package-json --list-different",
"prettier:fix": "prettier --write ."
},
"types": "lib/index.d.ts",
"dependencies": {
"@0xsequence/multicall": "0.39.0",
"ethers": "5.6.7",
"merkletreejs": "0.2.31"
},
"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.0",
"@types/node": "12.20.47",
"@typescript-eslint/eslint-plugin": "5.27.1",
"@typescript-eslint/parser": "5.27.1",
"chai": "4.3.6",
"chai-as-promised": "7.1.1",
"concurrently": "7.1.0",
"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": "git+https://github.com/ProjectOpenSea/seaport.git#76e508657888e3ec84039e1da269c822826991ef",
"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"
]
}
}