Enable manual workflow run and add TypeScript types

Added `workflow_dispatch` to GitHub Actions to permit manual execution of pull request tests, enhancing flexibility in CI/CD processes. Included `types` field in `package.json` to specify TypeScript declaration file, improving TypeScript support and integration.
This commit is contained in:
2024-08-14 19:51:45 +02:00
parent 6c4db19926
commit f307233fe7
4 changed files with 99 additions and 0 deletions

View File

@@ -3,6 +3,7 @@
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build:tsc": "tsc",
"lint": "eslint --ext .ts .",