-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.43 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 3.43 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@openclawdsol/agentic-candy-machine-sdk",
"version": "1.1.1",
"description": "Full-stack SDK for Agentic Candy Machine — TEE-attested recursive NFT passports on Solana via Metaplex",
"license": "MIT",
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
},
"./dna": {
"import": "./dist/esm/modules/dna/index.js",
"require": "./dist/cjs/modules/dna/index.js"
},
"./art": {
"import": "./dist/esm/modules/art/index.js",
"require": "./dist/cjs/modules/art/index.js"
},
"./token": {
"import": "./dist/esm/modules/token/index.js",
"require": "./dist/cjs/modules/token/index.js"
},
"./candy-machine": {
"import": "./dist/esm/modules/candy-machine/index.js",
"require": "./dist/cjs/modules/candy-machine/index.js"
},
"./recursive": {
"import": "./dist/esm/modules/recursive/index.js",
"require": "./dist/cjs/modules/recursive/index.js"
},
"./passport": {
"import": "./dist/esm/modules/passport/index.js",
"require": "./dist/cjs/modules/passport/index.js"
},
"./attestation": {
"import": "./dist/esm/modules/attestation/index.js",
"require": "./dist/cjs/modules/attestation/index.js"
},
"./x402": {
"import": "./dist/esm/modules/x402/index.js",
"require": "./dist/cjs/modules/x402/index.js"
},
"./metaplex-agent": {
"import": "./dist/esm/modules/metaplex-agent/index.js",
"require": "./dist/cjs/modules/metaplex-agent/index.js"
},
"./clawd-rwa": {
"import": "./dist/esm/modules/clawd-rwa/index.js",
"require": "./dist/cjs/modules/clawd-rwa/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "npm run build:esm && npm run build:cjs && npm run build:types",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:types": "tsc -p tsconfig.types.json",
"dev": "tsx watch src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src --ext .ts",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"@metaplex-foundation/mpl-candy-machine": "^6.0.1",
"@metaplex-foundation/mpl-token-metadata": "^3.3.0",
"@metaplex-foundation/mpl-toolbox": "^0.9.4",
"@metaplex-foundation/umi": "^0.9.2",
"@metaplex-foundation/umi-bundle-defaults": "^0.9.2",
"@metaplex-foundation/umi-web3js-adapters": "^0.9.2",
"@solana/spl-token": "^0.4.9",
"@solana/web3.js": "^1.98.0",
"bs58": "^6.0.0",
"buffer": "^6.0.3",
"eventemitter3": "^5.0.1"
},
"devDependencies": {
"@types/node": "^22.10.0",
"eslint": "^9.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^2.1.0"
},
"peerDependencies": {
"@solana/web3.js": "^1.90.0"
},
"keywords": [
"solana",
"nft",
"candy-machine",
"metaplex",
"recursive-nft",
"ai-agent",
"tee",
"attestation",
"passport",
"web3",
"x402",
"http402",
"rwa",
"tokenized-ai",
"mpl-agent-registry",
"clawd",
"eip-8004"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Solizardking/AgenticCandymachine.git"
}
}