cast/package.json

29 lines
601 B
JSON

{
"name": "cast",
"version": "0.2.1-dev",
"type": "module",
"private": true,
"engines": {
"node": ">=22.12.0"
},
"bin": {
"cast": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"test": "vitest run",
"format": "biome format --write .",
"check": "biome check --error-on-warnings .",
"check:shell": "bash .github/scripts/shellcheck-all.sh"
},
"dependencies": {
"yaml": "^2.5.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@types/node": "^22.10.0",
"typescript": "^5.7.0",
"vitest": "^2.1.0"
}
}