commover
Version:
Batch remove unused @ts-expect-error directive comment lines, especially helpful when using with ts-migrate.
49 lines • 1.08 kB
JSON
{
"name": "commover",
"version": "1.0.0",
"type": "module",
"description": "Batch remove unused @ts-expect-error directive comment lines, especially helpful when using with ts-migrate.",
"keywords": [
"ts-migrate",
"typescript",
"migration"
],
"author": "emosheep@qq.com",
"license": "MIT",
"files": [
"dist",
"CHANGELOG.md"
],
"bin": {
"commover": "./dist/index.js"
},
"dependencies": {
"commander": "^12.1.0",
"zx": "^8.1.9"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.27.9",
"@types/node": "^22.8.0",
"simple-git-hooks": "^2.11.1",
"tsup": "^8.3.4",
"typescript": "^5.6.3"
},
"simple-git-hooks": {
"pre-commit": [
"npx biome format ."
]
},
"repository": {
"type": "git",
"url": "https://github.com/emosheeep/commover"
},
"scripts": {
"prepublish": "npm run build",
"build": "tsup",
"watch": "tsup --watch",
"format": "biome format . --write",
"changeset": "changeset",
"versions": "changeset version"
}
}