-
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.1 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.1 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": "0.4.1",
"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 --write .",
"format:check": "biome format .",
"lint": "biome check .",
"lint:fix": "biome check --fix .",
"type-check": "tsc --noEmit",
"test": "vitest run",
"prepublishOnly": "npm run build"
},
"dependencies": {
"commander": "^12.1.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@biomejs/biome": "^2.2.4",
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^3.2.4",
"tsup": "^8.3.0",
"typescript": "^5.8.3",
"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"
}
}