nodecid/package.json

31 lines
742 B
JSON
Raw Normal View History

2023-10-29 07:35:26 +00:00
{
2025-01-16 05:22:33 +00:00
"name": "@moduletrace/nodecid",
2023-11-06 20:06:33 +00:00
"version": "1.0.7",
2023-10-29 07:35:26 +00:00
"description": "Simple CI/CD process",
2025-01-16 05:22:33 +00:00
"main": "dist/index.js",
2023-10-29 07:35:26 +00:00
"bin": {
2025-01-16 05:22:33 +00:00
"nodecid": "./dist/index.js",
"node-ci-cd": "./dist/index.js"
},
"scripts": {
"compile": "bun build --compile --minify --sourcemap --bytecode index.ts --outfile bin/nodecid"
2023-10-29 07:35:26 +00:00
},
"keywords": [
"CI/CD",
"Continuous Integration",
"Continous Deployment"
],
"author": "Benjamin Toby",
2023-11-01 05:01:17 +00:00
"license": "MIT",
"dependencies": {
"kill-port": "^2.0.1"
2025-01-16 05:22:33 +00:00
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^22.10.7"
},
"peerDependencies": {
"typescript": "^5.0.0"
2023-11-01 05:01:17 +00:00
}
2023-10-29 07:35:26 +00:00
}