forked from elizaOS/eliza
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into fix-plugin-tee-marlin
- Loading branch information
Showing
95 changed files
with
6,031 additions
and
645 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,83 +1,83 @@ | ||
{ | ||
"name": "eliza", | ||
"scripts": { | ||
"format": "biome format --write .", | ||
"lint": "biome lint .", | ||
"check": "biome check --apply .", | ||
"preinstall": "npx only-allow pnpm", | ||
"build": "turbo run build --filter=!eliza-docs", | ||
"build-docker": "turbo run build", | ||
"cleanstart": "if [ -f agent/data/db.sqlite ]; then rm agent/data/db.sqlite; fi && pnpm --filter \"@elizaos/agent\" start --isRoot", | ||
"cleanstart:debug": "if [ -f agent/data/db.sqlite ]; then rm agent/data/db.sqlite; fi && cross-env NODE_ENV=development VERBOSE=true DEFAULT_LOG_LEVEL=debug DEBUG=eliza:* pnpm --filter \"@elizaos/agent\" start --isRoot", | ||
"start": "pnpm --filter \"@elizaos/agent\" start --isRoot", | ||
"start:client": "pnpm --dir client dev", | ||
"start:debug": "cross-env NODE_ENV=development VERBOSE=true DEFAULT_LOG_LEVEL=debug DEBUG=eliza:* pnpm --filter \"@elizaos/agent\" start --isRoot", | ||
"dev": "bash ./scripts/dev.sh", | ||
"release": "pnpm build && pnpm format && npx lerna publish --no-private --force-publish", | ||
"clean": "bash ./scripts/clean.sh", | ||
"docker:build": "bash ./scripts/docker.sh build", | ||
"docker:run": "bash ./scripts/docker.sh run", | ||
"docker:bash": "bash ./scripts/docker.sh bash", | ||
"docker:start": "bash ./scripts/docker.sh start", | ||
"docker": "pnpm docker:build && pnpm docker:run && pnpm docker:bash", | ||
"test": "bash ./scripts/test.sh", | ||
"smokeTests": "bash ./scripts/smokeTests.sh", | ||
"integrationTests": "bash ./scripts/integrationTests.sh" | ||
}, | ||
"devDependencies": { | ||
"@biomejs/biome": "^1.9.4", | ||
"@commitlint/cli": "18.6.1", | ||
"@commitlint/config-conventional": "18.6.3", | ||
"@types/jest": "^29.5.11", | ||
"concurrently": "9.1.0", | ||
"cross-env": "7.0.3", | ||
"husky": "9.1.7", | ||
"jest": "^29.7.0", | ||
"lerna": "8.1.5", | ||
"only-allow": "1.2.1", | ||
"turbo": "2.3.3", | ||
"typedoc": "0.26.11", | ||
"typescript": "5.6.3", | ||
"viem": "2.21.58", | ||
"vite": "5.4.12", | ||
"vitest": "2.1.5" | ||
}, | ||
"pnpm": { | ||
"overrides": { | ||
"onnxruntime-node": "1.20.1", | ||
"@solana/[email protected]": "npm:@solana/[email protected]", | ||
"@solana/[email protected]": "npm:@solana/[email protected]", | ||
"@solana/web3.js@2": "npm:@solana/[email protected]", | ||
"viem": "2.21.58", | ||
"@polkadot/util": "12.6.2", | ||
"@polkadot/util-crypto": "12.6.2", | ||
"@polkadot/types-create": "10.13.1", | ||
"@polkadot/types-codec": "10.13.1", | ||
"@ai-sdk/provider": "1.0.6", | ||
"@ai-sdk/provider-utils": "2.1.2" | ||
} | ||
}, | ||
"engines": { | ||
"node": "23.3.0" | ||
}, | ||
"dependencies": { | ||
"@0glabs/0g-ts-sdk": "0.2.1", | ||
"@coinbase/coinbase-sdk": "0.10.0", | ||
"@deepgram/sdk": "^3.9.0", | ||
"@injectivelabs/sdk-ts": "^1.14.33", | ||
"@vitest/eslint-plugin": "1.0.1", | ||
"amqplib": "0.10.5", | ||
"csv-parse": "5.6.0", | ||
"langdetect": "^0.2.1", | ||
"ollama-ai-provider": "0.16.1", | ||
"optional": "0.1.4", | ||
"pnpm": "9.14.4", | ||
"sharp": "0.33.5", | ||
"tslog": "4.9.3", | ||
"bs58": "4.0.0" | ||
}, | ||
"packageManager": "[email protected]+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee", | ||
"workspaces": [ | ||
"packages/*" | ||
] | ||
} | ||
"name": "eliza", | ||
"scripts": { | ||
"format": "biome format --write .", | ||
"lint": "biome lint .", | ||
"check": "biome check --apply .", | ||
"preinstall": "npx only-allow pnpm", | ||
"build": "turbo run build --filter=!eliza-docs", | ||
"build-docker": "turbo run build", | ||
"cleanstart": "if [ -f agent/data/db.sqlite ]; then rm agent/data/db.sqlite; fi && pnpm --filter \"@elizaos/agent\" start --isRoot", | ||
"cleanstart:debug": "if [ -f agent/data/db.sqlite ]; then rm agent/data/db.sqlite; fi && cross-env NODE_ENV=development VERBOSE=true DEFAULT_LOG_LEVEL=debug DEBUG=eliza:* pnpm --filter \"@elizaos/agent\" start --isRoot", | ||
"start": "pnpm --filter \"@elizaos/agent\" start --isRoot", | ||
"start:client": "pnpm --dir client dev", | ||
"start:debug": "cross-env NODE_ENV=development VERBOSE=true DEFAULT_LOG_LEVEL=debug DEBUG=eliza:* pnpm --filter \"@elizaos/agent\" start --isRoot", | ||
"dev": "bash ./scripts/dev.sh", | ||
"release": "pnpm build && pnpm format && npx lerna publish --no-private --force-publish", | ||
"clean": "bash ./scripts/clean.sh", | ||
"docker:build": "bash ./scripts/docker.sh build", | ||
"docker:run": "bash ./scripts/docker.sh run", | ||
"docker:bash": "bash ./scripts/docker.sh bash", | ||
"docker:start": "bash ./scripts/docker.sh start", | ||
"docker": "pnpm docker:build && pnpm docker:run && pnpm docker:bash", | ||
"test": "bash ./scripts/test.sh", | ||
"smokeTests": "bash ./scripts/smokeTests.sh", | ||
"integrationTests": "bash ./scripts/integrationTests.sh" | ||
}, | ||
"devDependencies": { | ||
"@biomejs/biome": "^1.9.4", | ||
"@commitlint/cli": "18.6.1", | ||
"@commitlint/config-conventional": "18.6.3", | ||
"@types/jest": "^29.5.11", | ||
"concurrently": "9.1.0", | ||
"cross-env": "7.0.3", | ||
"husky": "9.1.7", | ||
"jest": "^29.7.0", | ||
"lerna": "8.1.5", | ||
"only-allow": "1.2.1", | ||
"turbo": "2.3.3", | ||
"typedoc": "0.26.11", | ||
"typescript": "5.6.3", | ||
"viem": "2.21.58", | ||
"vite": "5.4.12", | ||
"vitest": "2.1.5" | ||
}, | ||
"pnpm": { | ||
"overrides": { | ||
"onnxruntime-node": "1.20.1", | ||
"@solana/[email protected]": "npm:@solana/[email protected]", | ||
"@solana/[email protected]": "npm:@solana/[email protected]", | ||
"@solana/web3.js@2": "npm:@solana/[email protected]", | ||
"viem": "2.21.58", | ||
"@polkadot/util": "12.6.2", | ||
"@polkadot/util-crypto": "12.6.2", | ||
"@polkadot/types-create": "10.13.1", | ||
"@polkadot/types-codec": "10.13.1", | ||
"@ai-sdk/provider": "1.0.6", | ||
"@ai-sdk/provider-utils": "2.1.2", | ||
"cookie": "0.7.0" | ||
} | ||
}, | ||
"engines": { | ||
"node": "23.3.0" | ||
}, | ||
"dependencies": { | ||
"@0glabs/0g-ts-sdk": "0.2.1", | ||
"@coinbase/coinbase-sdk": "0.10.0", | ||
"@deepgram/sdk": "^3.9.0", | ||
"@injectivelabs/sdk-ts": "^1.14.33", | ||
"@vitest/eslint-plugin": "1.0.1", | ||
"amqplib": "0.10.5", | ||
"csv-parse": "5.6.0", | ||
"langdetect": "^0.2.1", | ||
"ollama-ai-provider": "0.16.1", | ||
"optional": "0.1.4", | ||
"pnpm": "9.14.4", | ||
"sharp": "0.33.5", | ||
"bs58": "4.0.0" | ||
}, | ||
"packageManager": "[email protected]+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee", | ||
"workspaces": [ | ||
"packages/*" | ||
] | ||
} |
Oops, something went wrong.