-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.2 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@opensea/sdk",
"version": "11.9.0",
"description": "TypeScript SDK for the OpenSea marketplace helps developers build new experiences using NFTs, tokens, and our marketplace data",
"license": "MIT",
"author": "OpenSea Developers",
"homepage": "https://docs.opensea.io/reference/api-overview",
"repository": {
"type": "git",
"url": "git+https://github.com/ProjectOpenSea/opensea-sdk.git"
},
"bugs": {
"url": "https://github.com/ProjectOpenSea/opensea-sdk/issues"
},
"type": "commonjs",
"main": "lib/index.js",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./stream": {
"types": "./lib/stream/index.d.ts",
"default": "./lib/stream/index.js"
},
"./viem": {
"types": "./lib/viem.d.ts",
"default": "./lib/viem.js"
}
},
"files": [
"lib",
"src"
],
"scripts": {
"build": "tsc",
"check-types": "tsc -p tsconfig.check.json",
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"test": "vitest run",
"test:all": "concurrently \"npm run test\" \"npm run test:integration\"",
"test:coverage": "vitest run --coverage",
"test:integration": "vitest run --config vitest.integration.config.ts"
},
"types": "lib/index.d.ts",
"dependencies": {
"@noble/hashes": "^2.0.1",
"@opensea/api-types": "^0.8.8",
"@opensea/seaport-js": "^4.2.0",
"ethers": "^6.16.0"
},
"peerDependencies": {
"viem": "^2.0.0"
},
"peerDependenciesMeta": {
"viem": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^25.4.0",
"@vitest/coverage-v8": "^3.2.4",
"concurrently": "^9.2.1",
"dotenv": "^17.3.1",
"jsdom": "27.0.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.57.0",
"viem": "2.23.2",
"vitest": "^3.2.4",
"@biomejs/biome": "2.5.2"
},
"keywords": [
"collectibles",
"crypto",
"ethereum",
"javascript",
"marketplace",
"nft",
"node",
"non-fungible tokens",
"opensea",
"sdk",
"smart contracts",
"typescript"
],
"engines": {
"node": ">=22.0.0"
}
}