Skip to content

Commit

Permalink
Update package.json with repository, exports, and engines
Browse files Browse the repository at this point in the history
  • Loading branch information
Royal-lobster committed Jan 9, 2025
1 parent e5de8bc commit 552af6f
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,18 @@
"name": "eliza-plugin-starter",
"version": "0.1.0",
"description": "Starter template for creating Eliza plugins with examples for Tavily and Exa search",
"repository": "https://github.com/IQAIcom/eliza-plugin-starter",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"module": "./dist/index.js",
"scripts": {
"build": "tsup src/index.ts --dts --format esm,cjs --clean && cp -R src/plugins dist/plugins",
"dev": "tsup src/index.ts --watch",
Expand Down Expand Up @@ -37,5 +46,12 @@
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^1.0.0"
}
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=23"
},
"files": ["dist", "!**/*.test.*", "!**/*.json", "LICENSE", "README.md"]
}

0 comments on commit 552af6f

Please sign in to comment.