-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3325 from elizaOS/fix/packages_json
chore: add missing version property to package.json
- Loading branch information
Showing
1 changed file
with
24 additions
and
23 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,26 @@ | ||
{ | ||
"name": "@elizaos/plugin-ethstorage", | ||
"main": "dist/index.js", | ||
"type": "module", | ||
"types": "dist/index.d.ts", | ||
"dependencies": { | ||
"@elizaos/core": "workspace:*", | ||
"@elizaos/plugin-trustdb": "workspace:*", | ||
"ethers": "^6.13.5", | ||
"kzg-wasm": "^0.4.0" | ||
}, | ||
"devDependencies": { | ||
"@biomejs/biome": "1.9.4", | ||
"@types/node": "^20.0.0", | ||
"tsup": "8.3.5" | ||
}, | ||
"scripts": { | ||
"build": "tsup --format esm --dts", | ||
"dev": "tsup --format esm --dts --watch", | ||
"lint": "biome lint .", | ||
"lint:fix": "biome check --apply .", | ||
"format": "biome format .", | ||
"format:fix": "biome format --write ." | ||
} | ||
"name": "@elizaos/plugin-ethstorage", | ||
"version": "0.25.6-alpha.1", | ||
"main": "dist/index.js", | ||
"type": "module", | ||
"types": "dist/index.d.ts", | ||
"dependencies": { | ||
"@elizaos/core": "workspace:*", | ||
"@elizaos/plugin-trustdb": "workspace:*", | ||
"ethers": "^6.13.5", | ||
"kzg-wasm": "^0.4.0" | ||
}, | ||
"devDependencies": { | ||
"@biomejs/biome": "1.9.4", | ||
"@types/node": "^20.0.0", | ||
"tsup": "8.3.5" | ||
}, | ||
"scripts": { | ||
"build": "tsup --format esm --dts", | ||
"dev": "tsup --format esm --dts --watch", | ||
"lint": "biome lint .", | ||
"lint:fix": "biome check --apply .", | ||
"format": "biome format .", | ||
"format:fix": "biome format --write ." | ||
} | ||
} |