{ "name": "@elizaos/plugin-tee", "version": "2.0.3-beta.7", "type": "module", "main": "dist/node/index.js", "module": "dist/node/index.js", "types": "dist/node/index.d.ts", "description": "Trusted Execution Environment (TEE) integration plugin for elizaOS - Multi-language support (TypeScript, Python, Rust)", "repository": { "type": "git", "url": "git+https://github.com/elizaos-plugins/plugin-tee.git" }, "exports": { "./package.json": "./package.json", ".": { "types": "./dist/node/index.d.ts", "eliza-source": { "types": "./src/index.ts", "import": "./src/index.ts", "default": "./src/index.ts" }, "node": { "types": "./dist/node/index.d.ts", "import": "./dist/node/index.js", "default": "./dist/node/index.js" }, "bun": { "types": "./dist/node/index.d.ts", "default": "./dist/node/index.js" }, "default": "./dist/node/index.js" }, "./*.css": "./dist/*.css", "./*": { "types": "./dist/node/*.d.ts", "import": "./dist/node/*.js", "default": "./dist/node/*.js" } }, "files": [ "registry-entry.json", "dist", "README.md", "LICENSE" ], "sideEffects": false, "dependencies": { "@elizaos/agent": "workspace:*", "@elizaos/core": "workspace:*", "@phala/dstack-sdk": "^0.5.7", "@solana/web3.js": "1.98.4", "viem": "^2.48.8" }, "devDependencies": { "@biomejs/biome": "2.5.3", "@types/node": "^25.0.3", "typescript": "^6.0.3", "vitest": "^4.0.0" }, "scripts": { "build:typescript": "tsc --noCheck -p tsconfig.build.json", "dev": "bun --hot build.ts", "clean": "node ../../packages/scripts/rm-path-recursive.mjs dist .turbo .turbo-tsconfig.json tsconfig.tsbuildinfo", "format": "bunx @biomejs/biome format --write .", "format:check": "bunx @biomejs/biome format .", "typecheck": "tsgo --noEmit", "test": "bun run test:typescript", "test:typescript": "vitest run --config vitest.config.ts", "test:watch": "vitest", "lint": "bunx @biomejs/biome check --write --unsafe .", "lint:check": "bunx @biomejs/biome check .", "build": "bun run build.ts", "build:ts": "bun run build.ts" }, "publishConfig": { "access": "public" }, "gitHead": "646c632924826e2b75c2304a75ee56959fe4a460", "agentConfig": { "pluginType": "elizaos:plugin:1.0.0", "pluginParameters": { "TEE_MODE": { "type": "string", "description": "Determines the Trusted Execution Environment operation mode (LOCAL, DOCKER, PRODUCTION) and is referenced in error handling to validate provided modes.", "required": true, "sensitive": false }, "TEE_VENDOR": { "type": "string", "description": "Specifies which Trusted Execution Environment vendor to initialize (defaults to PHALA).", "required": false, "default": "PHALA", "sensitive": false }, "WALLET_SECRET_SALT": { "type": "string", "description": "Secret salt used to deterministically derive Solana and EVM keypairs inside the TEE.", "required": true, "default": "secret_salt", "sensitive": true } } }, "eliza": { "platforms": [ "node" ], "runtime": "node", "platformDetails": { "node": "Node.js build available via exports.node" } } }