brocolito
Version:
Create type-safe CLIs to align local development and pipeline workflows
56 lines • 1.3 kB
JSON
{
"name": "brocolito",
"version": "6.1.1",
"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": "9.27.0",
"@types/node": "22.15.24",
"eslint": "9.27.0",
"eslint-plugin-prettier": "5.4.0",
"prettier": "3.5.3",
"typescript": "5.8.3",
"typescript-eslint": "8.32.1",
"vite": "6.3.5",
"vitest": "3.1.4"
},
"peerDependencies": {
"vite": "^6.3.5"
},
"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"
}
}