eigenlayer-agentkit
Version:
Core interfaces and types for EigenLayer AgentKit
41 lines • 923 B
JSON
{
"name": "eigenlayer-agentkit",
"version": "0.1.0",
"description": "Core interfaces and types for EigenLayer AgentKit",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"keywords": [
"ai",
"agents",
"verifiable-inference",
"eigenlayer"
],
"author": "Eigen Labs, Inc.",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0",
"rimraf": "^5.0.0",
"jest": "^29.7.0",
"@types/jest": "^29.5.12",
"ts-jest": "^29.1.2"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rimraf dist",
"dev": "tsc -p tsconfig.json --watch",
"test": "jest --passWithNoTests"
}
}