UNPKG

blast-shield

Version:

Technical debt protection tool for any codebase

59 lines 1.34 kB
{ "name": "blast-shield", "description": "Technical debt protection tool for any codebase", "version": "0.0.31", "type": "module", "repository": { "type": "git", "url": "https://github.com/arnaud-zg/blast-shield.git", "directory": "apps/cli" }, "main": "./dist/index.esm.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.esm.js", "default": "./dist/index.esm.js" } }, "files": [ "dist" ], "bin": { "blast-shield": "./dist/index.esm.js" }, "keywords": [ "cli", "typescript", "debt", "technical-debt", "code-quality" ], "author": "Arnaud Zheng", "license": "MIT", "dependencies": { "commander": "^14.0.0", "zod": "^3.24.0", "@blast-shield/core": "^0.0.31", "@blast-shield/logger": "^0.0.31", "@blast-shield/display": "^0.0.31", "@blast-shield/tooling-config": "^0.0.31" }, "devDependencies": { "vitest": "^3.0.0", "@blast-shield/build-utils": "^0.0.31" }, "metadata": { "bundleSizeLimit": 10 }, "scripts": { "build": "tsup", "watch": "tsup --watch", "dev": "tsx watch src/index.ts", "start": "./dist/index.esm.js", "test": "vitest run", "lint": "biome check .", "check-types": "echo \"Types checked!\"" } }