@agentix/wallet-solana
Version:
53 lines • 1.17 kB
JSON
{
"name": "@agentix/wallet-solana",
"version": "1.0.0",
"type": "module",
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/agentix-sdk/agentix.git"
},
"homepage": "https://github.com/agentix-sdk/agentix/tree/main/packages/wallets/solana",
"keywords": [
"agentix",
"wallet",
"solana"
],
"author": "agentix-sdk",
"license": "Apache-2.0",
"dependencies": {
"tweetnacl": "^1.0.3",
"zod": "^3.24.1",
"viem": "2.22.19",
"agentix": "1.0.0"
},
"peerDependencies": {
"@solana/web3.js": "^1.98.0",
"agentix": "1.0.0"
},
"scripts": {
"clean": "rm -rf dist .turbo node_modules",
"build": "tsup src/index.ts --dts --clean --format cjs,esm --out-dir dist",
"test": "jest"
}
}