-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.18 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.18 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
{
"name": "@opensea/cli",
"version": "1.0.0",
"type": "module",
"description": "OpenSea CLI - Query the OpenSea API from the command line or programmatically",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"opensea": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"format": "biome format --config-path ../.. --write .",
"format:check": "biome format --config-path ../.. .",
"lint": "biome check --config-path ../.. .",
"lint:fix": "biome check --config-path ../.. --fix .",
"type-check": "tsc --noEmit",
"test": "vitest run",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@opensea/api-types": "^0.2.0",
"commander": "^14.0.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^3.2.4",
"tsup": "^8.3.0",
"typescript": "^6.0.2",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"opensea",
"nft",
"cli",
"api",
"web3"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ProjectOpenSea/opensea-cli"
}
}