Compare commits

...

2 Commits

2 changed files with 22 additions and 5 deletions

13
CHANGELOG.md Normal file
View File

@@ -0,0 +1,13 @@
# Changelog
All notable changes to this project will be documented in this file.
## [0.0.2] - 2026-02-20
### Added
- Initial release of the SDK.
- Added `.npmignore` to exclude Gitea config files.
- Configured dual publishing (Gitea + Public NPM).
## [0.0.1] - 2026-02-18
### Added
- Project initialization.

View File

@@ -1,6 +1,6 @@
{
"name": "@evercatch/sdk",
"version": "0.0.1",
"version": "0.0.2",
"description": "Evercatch SDK for Node.js/TypeScript (Coming Soon)",
"main": "index.js",
"author": "Evercatch <npm@evercatch.dev>",
@@ -9,12 +9,16 @@
"type": "git",
"url": "https://git.psmattas.com/evercatch/evercatch-node"
},
"keywords": ["evercatch", "webhooks", "sdk"],
"keywords": [
"evercatch",
"webhooks",
"sdk"
],
"engines": {
"node": ">=16"
},
"scripts": {
"publish:public": "npm publish",
"publish:gitea": "npm publish --registry=https://git.psmattas.com/api/packages/Evercatch/npm/"
}
"publish:public": "npm publish",
"publish:gitea": "npm publish --registry=https://git.psmattas.com/api/packages/Evercatch/npm/"
}
}