-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.6 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.6 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
{
"name": "@opensea/tool-sdk",
"version": "0.4.2",
"type": "module",
"description": "SDK and CLI for building ERC-Draft compliant AI agent tools",
"repository": {
"type": "git",
"url": "git+https://github.com/ProjectOpenSea/tool-sdk.git"
},
"bin": {
"tool-sdk": "./dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./cloudflare": {
"types": "./dist/adapters/cloudflare.d.ts",
"default": "./dist/adapters/cloudflare.js"
},
"./testing": {
"types": "./dist/testing/index.d.ts",
"default": "./dist/testing/index.js"
}
},
"files": [
"dist",
"dist/templates"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"lint": "biome check --config-path . .",
"lint:fix": "biome check --config-path . --write .",
"format": "biome format --config-path . --write .",
"format:check": "biome format --config-path . .",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@opensea/wallet-adapters": "^0.3.0",
"@clack/prompts": "0.10.1",
"canonicalize": "2.1.0",
"commander": "14.0.3",
"jiti": "2.6.1",
"picocolors": "1.1.1",
"viem": "2.31.3",
"zod": "4.3.6"
},
"devDependencies": {
"@types/node": "22.7.5",
"tsup": "8.5.1",
"typescript": "6.0.2",
"vitest": "3.2.4",
"@biomejs/biome": "^2.4.10"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"opensea",
"ai",
"agent",
"tool",
"registry",
"erc",
"sdk",
"cli"
],
"license": "MIT"
}