Skip to content

Commit

Permalink
Merge pull request #2929 from elizaOS/fix/plugin-avail
Browse files Browse the repository at this point in the history
fix: missing version prop in package.json
  • Loading branch information
shakkernerd authored Jan 28, 2025
2 parents d135fb7 + 5ec4d59 commit 0f04f16
Showing 1 changed file with 19 additions and 18 deletions.
37 changes: 19 additions & 18 deletions packages/plugin-avail/package.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
{
"name": "@elizaos/plugin-avail",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"dependencies": {
"@elizaos/core": "workspace:*",
"@elizaos/plugin-trustdb": "workspace:*",
"avail-js-sdk": "^0.3.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"tsup": "8.3.5",
"@polkadot/types": "^10.11.3"
},
"scripts": {
"build": "tsup --format esm --dts",
"dev": "tsup --format esm --dts --watch"
}
"name": "@elizaos/plugin-avail",
"version": "0.1.8+build.1",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"dependencies": {
"@elizaos/core": "workspace:*",
"@elizaos/plugin-trustdb": "workspace:*",
"avail-js-sdk": "^0.3.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"tsup": "8.3.5",
"@polkadot/types": "^10.11.3"
},
"scripts": {
"build": "tsup --format esm --dts",
"dev": "tsup --format esm --dts --watch"
}
}

0 comments on commit 0f04f16

Please sign in to comment.