bit-ship
Version:
Bit-Ship CLI is tool that analyses your code and generates a custom environment for your needs You can use if to local development, CI/CD or even production.
68 lines • 2.08 kB
JSON
{
"name": "bit-ship",
"description": "Bit-Ship CLI is tool that analyses your code and generates a custom environment for your needs\nYou can use if to local development, CI/CD or even production.",
"type": "module",
"public": true,
"version": "0.5.0",
"dependencies": {
"@sentry/node": "^8.26.0",
"chalk": "5.4.1",
"citty": "0.1.6",
"confbox": "0.1.8",
"consola": "^3.4.2",
"joi": "17.13.3",
"ofetch": "^1.4.1",
"unstorage": "^1.10.2",
"uuid": "11.0.3"
},
"devDependencies": {
"@rollup/plugin-typescript": "catalog:public",
"@rollup/plugin-commonjs": "catalog:public",
"@rollup/plugin-json": "catalog:public",
"@rollup/plugin-terser": "catalog:public",
"@types/uuid": "^10.0.0",
"typescript": "catalog:public",
"rollup": "catalog:public",
"tslib": "catalog:public",
"@bit-ship/analyser-cli": "0.1.0",
"@bit-ship/demon": "0.1.0",
"@bit-ship/types": "1.0.0",
"@repo/eslint": "1.0.0"
},
"bin": {
"bit-ship": "bin/bin.js"
},
"publishConfig": {
"access": "public"
},
"license": {
"type": "MIT",
"url": "https://github.com/bit-ship-dev/bit-ship-public/blob/main/LICENSE"
},
"repository": {
"type": "git",
"url": "https://github.com/bit-ship-dev/bit-ship-public"
},
"keywords": [
"bit-ship",
"cli",
"env",
"environment",
"tooling",
"analyser",
"analyzer"
],
"homepage": "https://www.bit-ship.com",
"bugs": {
"url": "https://discord.com/channels/1260997714049630268/1325444528546643979"
},
"scripts": {
"start": "node ./bin/bin.js",
"dev": "rollup --watch",
"build": "rollup --config ../../packages/rollup/configs/cli.js && cp ../../packages/analyser-cli/dist/index.mjs ./dist/analyser-cli.js && cp ../../packages/demon/dist/index.mjs ./dist/demon.mjs",
"lint": "eslint --config ../../packages/eslint/configs/base.js ./src",
"nightly": "node ./cli/nightly.mjs",
"typecheck": "tsc --noEmit",
"publish-nightly": "pnpm nightly && npm publish --tag nightly --access public"
}
}