Merge pull request 'release' (#5) from main into release
Some checks failed
Release / Release (push) Failing after 28s

Reviewed-on: #5
This commit is contained in:
Jan K9f 2025-06-19 14:08:50 +00:00
commit 69fa25bc1d
Signed by:
SSH key fingerprint: SHA256:lXEoR6LJYqfrLFi9ELE9o8JyzF7bLKBUlelXoro5APw
2 changed files with 111 additions and 56 deletions

View file

@ -3,6 +3,17 @@
"version": "0.2.2",
"module": "index.ts",
"type": "module",
"bin": {
"pcli": "./dist/index.js"
},
"scripts": {
"build": "bun build index.ts --outfile dist/index.js --target node",
"dev": "bun run index.ts",
"prepublishOnly": "bun run build"
},
"files": [
"dist/"
],
"devDependencies": {
"@types/bun": "latest"
},