-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 883 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 883 Bytes
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
{
"name": "@moltlaunch/sdk",
"version": "3.0.1",
"description": "MoltLaunch V3 SDK — Composable Signal Architecture for AI Agent Identity on Solana",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "node test/basic.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"moltlaunch",
"ai-agents",
"identity",
"solana",
"composable-signals",
"trust-score",
"attestation",
"sybil-resistance"
],
"author": "MoltLaunch",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tradingstarllc/moltlaunch-sdk"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@coral-xyz/anchor": "^0.30.0",
"@solana/web3.js": "^1.95.0"
},
"devDependencies": {
"typescript": "^5.4.0"
},
"files": [
"dist",
"src/idl"
]
}