@coinbase/agentkit
Version:
Coinbase AgentKit core primitives
103 lines • 3.05 kB
JSON
{
"name": "@coinbase/agentkit",
"description": "Coinbase AgentKit core primitives",
"repository": "https://github.com/coinbase/agentkit",
"version": "0.10.4",
"author": "Coinbase Inc.",
"license": "Apache-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"coinbase",
"sdk",
"crypto",
"cdp",
"agentkit",
"ai",
"agent",
"nodejs",
"typescript"
],
"dependencies": {
"@across-protocol/app-sdk": "^0.2.0",
"@alloralabs/allora-sdk": "^0.1.0",
"@base-org/account": "^2.2.0",
"@coinbase/cdp-sdk": "^1.38.0",
"@coinbase/coinbase-sdk": "^0.20.0",
"@coinbase/x402": "^0.6.3",
"@ensofinance/sdk": "^2.0.6",
"@jup-ag/api": "^6.0.39",
"@privy-io/public-api": "2.18.5",
"@privy-io/server-auth": "1.18.4",
"@solana/kit": "^2.1.1",
"@solana/spl-token": "^0.4.12",
"@solana/web3.js": "^1.98.1",
"@vaultsfyi/sdk": "^2.1.9",
"@x402/evm": "^2.0.0",
"@x402/svm": "^2.0.0",
"@x402/fetch": "^2.0.0",
"@zerodev/ecdsa-validator": "^5.4.5",
"@zerodev/intent": "^0.0.24",
"@zerodev/sdk": "^5.4.28",
"@zoralabs/coins-sdk": "0.2.8",
"@zoralabs/protocol-deployments": "0.6.1",
"bs58": "^4.0.1",
"canonicalize": "^2.1.0",
"clanker-sdk": "^4.1.18",
"decimal.js": "^10.5.0",
"ethers": "^6.13.5",
"graphql-request": "^7.2.0",
"md5": "^2.3.0",
"opensea-js": "^7.1.18",
"reflect-metadata": "^0.2.2",
"sushi": "6.2.1",
"twitter-api-v2": "^1.18.2",
"viem": "2.38.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/nunjucks": "^3.2.6",
"@types/ora": "^3.2.0",
"@types/prompts": "^2.4.9",
"@types/secp256k1": "^4.0.6",
"abitype": "^1.0.8",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"mock-fs": "^5.2.0",
"nunjucks": "^3.2.4",
"ora": "^7.0.1",
"picocolors": "^1.0.0",
"prompts": "^2.4.2",
"ts-jest": "^29.2.5",
"tsd": "^0.31.2",
"tsx": "^4.7.1",
"typescript": "^5.7.2",
"yargs": "^17.7.2"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsc",
"lint": "eslint -c .eslintrc.json \"src/**/*.ts\"",
"lint:fix": "eslint -c .eslintrc.json \"src/**/*.ts\" --fix",
"format": "prettier -c .prettierrc --write \"**/*.{ts,js,cjs,json,md}\"",
"format:check": "prettier -c .prettierrc --check \"**/*.{ts,js,cjs,json,md}\"",
"check": "tsc --noEmit",
"test": "jest --no-cache --testMatch='**/*.test.ts'",
"test:e2e": "jest --no-cache --testMatch=**/e2e.ts --coverageThreshold '{}'",
"test:types": "tsd --files src/tests/types.test-d.ts",
"clean": "rm -rf dist/*",
"docs": "typedoc --entryPoints ./src --entryPointStrategy expand --exclude ./src/tests/**/*.ts",
"docs:serve": "http-server ./docs",
"dev": "tsc --watch",
"generate:action-provider": "tsx ./scripts/generate-action-provider/main.ts"
}
}