Skip to content

Commit

Permalink
chore: add dependencies and config files
Browse files Browse the repository at this point in the history
  • Loading branch information
IkigaiLabsETH committed Dec 20, 2024
1 parent 4d8c4bb commit 33ef78f
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 3 deletions.
8 changes: 8 additions & 0 deletions packages/plugin-nft-collections/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"extends": "../../.eslintrc.json",
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"root": true
}
7 changes: 7 additions & 0 deletions packages/plugin-nft-collections/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"tabWidth": 4,
"semi": true,
"singleQuote": false,
"trailingComma": "es5",
"printWidth": 80
}
16 changes: 13 additions & 3 deletions packages/plugin-nft-collections/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,24 @@
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest"
"test": "jest",
"lint": "eslint src --ext .ts",
"format": "prettier --write src/**/*.ts"
},
"dependencies": {
"@ai16z/eliza": "workspace:*",
"@ai16z/plugin-evm": "workspace:*",
"axios": "^1.6.7"
},
"devDependencies": {
"typescript": "^5.3.3",
"@types/node": "^20.11.16"
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
},
"peerDependencies": {
"@ai16z/eliza": "workspace:*"
}
}

0 comments on commit 33ef78f

Please sign in to comment.