comment-remover-cli
Version:
A CLI tool to remove comments from Svelte and TypeScript files while preserving JSDoc
36 lines (35 loc) • 717 B
JSON
{
"name": "comment-remover-cli",
"version": "1.0.4",
"description": "A CLI tool to remove comments from Svelte and TypeScript files while preserving JSDoc",
"main": "dist/index.js",
"bin": {
"comment-remover-cli": "./dist/index.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"test": "jest",
"start": "node dist/index.js"
},
"keywords": [
"comments",
"svelte",
"typescript",
"cli",
"code-cleanup"
],
"author": "Your Name",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.14",
"jest": "^26.0.0",
"ts-jest": "^26.5.6",
"ts-node": "^10.0.0",
"typescript": "^4.0.0"
}
}