buncid/package.json

36 lines
929 B
JSON
Raw Normal View History

2023-10-29 07:35:26 +00:00
{
2025-01-16 08:01:06 +00:00
"name": "@moduletrace/buncid",
2025-02-22 17:02:00 +00:00
"version": "1.1.2",
2025-02-21 08:00:49 +00:00
"author": "Benjamin Toby",
"repository": {
"type": "git",
"url": "https://git.tben.me/Moduletrace/buncid.git"
},
2025-01-16 07:16:23 +00:00
"main": "dist/index.js",
2025-02-21 08:00:49 +00:00
"devDependencies": {
"@types/bun": "latest",
"@types/kill-port": "^2.0.3",
"@types/node": "^22.10.7"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
2023-10-29 07:35:26 +00:00
"bin": {
2025-02-03 12:41:13 +00:00
"buncid": "./dist/buncid.js",
"buncid-builds-next": "./dist/rebuilds/next-js/index.js"
2025-01-16 05:22:33 +00:00
},
2025-02-21 08:00:49 +00:00
"description": "Simple CI/CD process For Bun runtime",
2023-10-29 07:35:26 +00:00
"keywords": [
"CI/CD",
"Continuous Integration",
"Continous Deployment"
],
2023-11-01 05:01:17 +00:00
"license": "MIT",
2025-02-21 08:00:49 +00:00
"scripts": {
"compile": "bun build --compile --minify --sourcemap --bytecode index.ts --outfile bin/buncid"
},
2023-11-01 05:01:17 +00:00
"dependencies": {
"kill-port": "^2.0.1"
}
2023-10-29 07:35:26 +00:00
}