-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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 supabase-updates
- Loading branch information
Showing
37 changed files
with
12,035 additions
and
463 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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import eslintGlobalConfig from "../../eslint.config.mjs"; | ||
|
||
export default [ | ||
...eslintGlobalConfig, | ||
{ | ||
files: ["src/**/*.ts"], | ||
rules: { | ||
// Disable problematic rules | ||
"@typescript-eslint/no-unused-expressions": "off", | ||
"@typescript-eslint/no-explicit-any": "warn", | ||
"@typescript-eslint/no-unsafe-member-access": "off", | ||
"@typescript-eslint/no-unsafe-assignment": "off", | ||
"@typescript-eslint/no-unsafe-return": "off", | ||
"@typescript-eslint/no-unsafe-call": "off", | ||
}, | ||
}, | ||
]; |
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 |
---|---|---|
@@ -0,0 +1,59 @@ | ||
{ | ||
"name": "@elizaos/plugin-pyth-data", | ||
"version": "1.0.0", | ||
"description": "Pyth Network data plugin for Eliza", | ||
"type": "module", | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"scripts": { | ||
"build": "tsup --format esm --dts", | ||
"test": "vitest", | ||
"lint": "eslint src --ext .ts", | ||
"clean": "rimraf dist", | ||
"build:schemas": "openapi-zod-client ./schema.json --output src/types/zodSchemas.ts", | ||
"pull:schema": "curl -o schema.json -z schema.json https://hermes.pyth.network/docs/openapi.json", | ||
"prebuild": "pnpm run pull:schema && pnpm run build:schemas" | ||
}, | ||
"dependencies": { | ||
"@elizaos/core": "^0.1.7", | ||
"@pythnetwork/client": "^2.22.0", | ||
"@pythnetwork/hermes-client": "^1.3.0", | ||
"@solana/web3.js": "1.95.8", | ||
"@zodios/core": "^10.9.6", | ||
"ajv": "^8.12.0", | ||
"buffer": "6.0.3", | ||
"chalk": "^5.4.1", | ||
"cli-table3": "^0.6.5", | ||
"cross-fetch": "^4.0.0", | ||
"eventsource": "^3.0.2", | ||
"jstat": "^1.9.6", | ||
"ora": "^8.1.1", | ||
"zod": "^3.23.8" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^20.8.2", | ||
"@typescript-eslint/eslint-plugin": "^6.7.4", | ||
"@typescript-eslint/parser": "^6.7.4", | ||
"eslint": "^8.50.0", | ||
"openapi-zod-client": "^1.18.1", | ||
"rimraf": "^5.0.5", | ||
"tsup": "^8.0.0", | ||
"typescript": "^5.2.2", | ||
"vitest": "^1.0.0" | ||
}, | ||
"peerDependencies": { | ||
"@elizaos/core": "^0.1.7" | ||
}, | ||
"engines": { | ||
"node": ">=16.0.0" | ||
}, | ||
"keywords": [ | ||
"eliza", | ||
"plugin", | ||
"pyth", | ||
"oracle", | ||
"price-feed" | ||
], | ||
"author": "Eliza Team", | ||
"license": "MIT" | ||
} |
Oops, something went wrong.