-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"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",
"packageManager": "pnpm@9.12.3",
"license": "MIT",
"files": ["dist", "CHANGELOG.md"],
"bin": {
"commover": "./dist/index.js"
},
"scripts": {
"prepare": "simple-git-hooks",
"prepublish": "npm run build",
"build": "tsup",
"watch": "tsup --watch",
"format": "biome format . --write",
"changeset": "changeset",
"versions": "changeset version"
},
"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"
}
}