UNPKG

trustwrapper-eliza-plugin

Version:

Universal AI verification plugin for Eliza framework - provides real-time trust scoring, compliance validation, and zero-knowledge verification for any AI agent

81 lines 2.25 kB
{ "name": "trustwrapper-eliza-plugin", "version": "1.0.0", "description": "Universal AI verification plugin for Eliza framework - provides real-time trust scoring, compliance validation, and zero-knowledge verification for any AI agent", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsc", "dev": "tsc --watch", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "test:integration": "jest tests/integration", "test:unit": "jest tests/unit", "lint": "eslint src --ext .ts --fix", "format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"", "clean": "rm -rf dist coverage", "validate": "npm run lint && npm run test && npm run build", "start": "node dist/index.js", "demo": "node simple_test.cjs", "prepublishOnly": "npm run clean && npm run validate", "postbuild": "node simple_test.cjs" }, "keywords": [ "eliza", "ai-verification", "trustwrapper", "ai-agents", "blockchain-verification", "compliance", "zero-knowledge", "trust-scoring", "ai-marketplace", "defi", "trading-verification" ], "author": "TrustWrapper by Lamassu Labs <hello@trustwrapper.io>", "license": "MIT", "homepage": "https://trustwrapper.io/eliza", "repository": { "type": "git", "url": "https://github.com/lamassu-labs/trustwrapper-eliza-plugin" }, "bugs": { "url": "https://github.com/lamassu-labs/trustwrapper-eliza-plugin/issues" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/trustwrapper" }, "dependencies": { "@ai16z/eliza": "*", "axios": "^1.6.0", "dotenv": "^16.5.0" }, "devDependencies": { "@types/jest": "^29.0.0", "@types/node": "^20.0.0", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "eslint": "^8.0.0", "jest": "^29.0.0", "ts-jest": "^29.0.0", "ts-node": "^10.9.0", "typescript": "^5.0.0", "prettier": "^3.0.0" }, "peerDependencies": { "@ai16z/eliza": "*" }, "engines": { "node": ">=18.0.0" }, "files": [ "dist", "README.md", "LICENSE", "CHANGELOG.md" ] }