UNPKG

blast-shield

Version:

Technical debt protection tool for any codebase

52 lines 1.16 kB
{ "name": "blast-shield", "description": "Technical debt protection tool for any codebase", "version": "0.0.27", "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", "@blast-shield/logger": "^0.0.27", "@blast-shield/core": "^0.0.27", "@blast-shield/tooling-config": "^0.0.27" }, "metadata": { "bundleSizeLimit": 5 }, "scripts": { "build": "tsup", "watch": "tsup --watch", "dev": "tsx watch src/index.ts", "start": "./dist/index.esm.js", "lint": "echo \"Linted!\"", "check-types": "echo \"Types checked!\"" } }