-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.12 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.12 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
43
44
45
46
{
"name": "typescript-ratchet",
"version": "0.0.4",
"packageManager": "pnpm@10.7.0",
"keywords": [
"cli",
"typescript",
"ratchet",
"codemod"
],
"homepage": "https://github.com/linotte-technology/typescript-ratchet",
"files": [
"dist"
],
"bin": {
"typescript-ratchet": "dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/linotte-technology/typescript-ratchet.git"
},
"scripts": {
"clean": "rimraf dist",
"typecheck": "tsc --noEmit --resolveJsonModule",
"build": "tsup",
"start": "dist/index.js",
"dev": "pnpm run clean && pnpm run build && pnpm run start"
},
"author": "Linotte Technology",
"license": "MIT",
"description": "TypeScript Ratchet Codemods to add @ts-expect-error above tsc reported issues.",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^13.1.0",
"inquirer": "^12.5.0",
"jscodeshift": "^17.3.0",
"ts-morph": "^25.0.1",
"typescript": "^5.8.2"
},
"devDependencies": {
"@types/jscodeshift": "^0.12.0",
"@types/node": "^22.13.14",
"rimraf": "^6.0.1",
"tsup": "^8.4.0"
}
}