feat: Add some compiling
All checks were successful
Label PRs based on size / Check PR size (pull_request) Successful in 5s

This commit is contained in:
Jan K9f 2025-06-19 15:19:57 +02:00
commit 81ee09b42f
Signed by: jank
GPG key ID: 22BEAC760B3333D6
2 changed files with 111 additions and 56 deletions

View file

@ -3,6 +3,17 @@
"version": "0.2.1",
"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"
},