-
Notifications
You must be signed in to change notification settings - Fork 183
/
package.json
86 lines (86 loc) · 2.84 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
{
"name": "@opensea/seaport-js",
"version": "4.0.4",
"description": "[Seaport](https://github.com/ProjectOpenSea/seaport) is a new marketplace protocol for safely and efficiently buying and selling NFTs. This is a TypeScript 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",
"src"
],
"scripts": {
"build": "hardhat compile && tsc -p tsconfig.build.json",
"check-types": "tsc --noEmit",
"check-types:incremental": "npm run check-types --incremental",
"coverage": "c8 npm run test",
"eslint:check": "eslint . --max-warnings 0 --ext .js,.jsx,.ts,.tsx",
"postinstall": "husky install || exit 0",
"lint": "concurrently \"npm run check-types\" \"npm run eslint:check\" \"npm run prettier:check\" \"npm run prettier:check:package.json\"",
"prepare": "npm run build",
"prettier:check": "prettier --check .",
"prettier:check:package.json": "prettier-package-json --list-different",
"prettier:fix": "prettier --write . && prettier-package-json --write package.json",
"test": "hardhat test"
},
"types": "lib/index.d.ts",
"dependencies": {
"ethers": "^6.9.0",
"merkletreejs": "^0.4.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@rari-capital/solmate": "^6.4.0",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.5",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.0.0",
"@types/sinon": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"c8": "^10.0.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"concurrently": "^8.0.1",
"dotenv": "^16.0.3",
"eslint": "^8.41.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"hardhat": "^2.22.2",
"husky": "^9.0.0",
"lint-staged": "^15.2.0",
"prettier": "^3.0.0",
"prettier-package-json": "^2.8.0",
"prettier-plugin-solidity": "^1.1.3",
"seaport": "ProjectOpenSea/seaport#585b2ef",
"sinon": "^18.0.0",
"sinon-chai": "^3.7.0",
"ts-node": "^10.9.1",
"typechain": "^8.2.0",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=20.0.0"
},
"lint-staged": {
"package.json": [
"prettier-package-json --write",
"git add"
],
"**/*.{ts,tsx,js,jsx,html,md,mdx,yml,json}": [
"prettier --write"
]
}
}