Skip to content

Commit

Permalink
Merge pull request #3325 from elizaOS/fix/packages_json
Browse files Browse the repository at this point in the history
chore: add missing version property to package.json
  • Loading branch information
shakkernerd authored Feb 6, 2025
2 parents d449ca2 + c108525 commit a84c7e2
Showing 1 changed file with 24 additions and 23 deletions.
47 changes: 24 additions & 23 deletions packages/plugin-ethstorage/package.json
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 ."
}
}

0 comments on commit a84c7e2

Please sign in to comment.