-
Notifications
You must be signed in to change notification settings - Fork 185
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.14 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.14 KB
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
{
"name": "@opensea/seaport-js",
"version": "4.1.2",
"description": "[Seaport](https://github.com/ProjectOpenSea/seaport) is a 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"
},
"type": "module",
"main": "lib/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"build": "hardhat build && tsc -p tsconfig.build.json && node scripts/postbuild.mjs",
"check-types": "tsc --noEmit",
"check-types:incremental": "npm run check-types --incremental",
"coverage": "c8 npm run test",
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "concurrently \"npm run check-types\" \"biome check .\"",
"lint:fix": "biome check --write .",
"postinstall": "husky || exit 0",
"prepare": "npm run build",
"test": "hardhat test"
},
"types": "lib/index.d.ts",
"dependencies": {
"ethers": "^6.16.0",
"merkletreejs": "^0.6.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.12",
"@nomicfoundation/hardhat-toolbox-mocha-ethers": "^3.0.0",
"@rari-capital/solmate": "^6.4.0",
"@types/chai-as-promised": "^8.0.0",
"@types/mocha": "^10.0.10",
"@types/node": "^24.0.0",
"c8": "^11.0.0",
"chai": "^5.1.2",
"chai-as-promised": "^8.0.0",
"concurrently": "^9.2.1",
"dotenv": "17.4.2",
"hardhat": "^3.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"seaport": "ProjectOpenSea/seaport#080133906585660f6a76b82984f3fb690ff4b2a9",
"typescript": "^6.0.2"
},
"engines": {
"node": ">=20.0.0"
},
"overrides": {
"get-tsconfig": "4.14.0",
"undici": "6.24.0",
"brace-expansion@2": "2.0.1"
},
"lint-staged": {
"**/*.{ts,js,json}": [
"biome check --write --no-errors-on-unmatched"
]
}
}