brocolito
Version:
Create type-safe CLIs to align local development and pipeline workflows
56 lines • 1.3 kB
JSON
{
"name": "brocolito",
"version": "7.0.0",
"description": "Create type-safe CLIs to align local development and pipeline workflows",
"main": "dist/brocolito.cjs",
"module": "dist/brocolito.mjs",
"types": "dist/brocolito.d.ts",
"files": [
"dist",
"bin"
],
"type": "module",
"bin": {
"brocolito": "./bin/build.js"
},
"repository": {
"type": "git",
"url": "https://github.com/vikingair/brocolito"
},
"keywords": [
"CLI",
"GitHub Actions"
],
"author": "Viktor Luft <viktor.luft@freiheit.com> (https://github.com/vikingair)",
"license": "MIT",
"dependencies": {
"picocolors": "^1.1.1"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/node": "25.6.0",
"eslint": "10.2.0",
"eslint-plugin-prettier": "5.5.5",
"prettier": "3.8.3",
"typescript": "6.0.2",
"typescript-eslint": "8.58.2",
"vite": "8.0.8",
"vitest": "4.1.4"
},
"peerDependencies": {
"vite": ">= 8"
},
"peerDependenciesMeta": {
"vite": {
"optional": true
}
},
"scripts": {
"lint": "pnpm lint:es && pnpm lint:ts",
"lint:es": "eslint . --max-warnings 0",
"lint:ts": "tsc",
"prepare:ts": "tsc -p tsconfig.publish.json",
"test": "vitest --run",
"test:update": "vitest --run -u"
}
}