-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 884 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 884 Bytes
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
{
"version": "0.1.0",
"license": "MIT",
"main": "dist/index.js",
"bin": "dist/cli.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=14.17"
},
"scripts": {
"start": "tsc -p . --watch",
"build": "tsc -p . && tsc -p test",
"test": "vitest run",
"prepare": "tsc -p ."
},
"name": "ts-fix",
"private": true,
"author": "Isabel Duan",
"devDependencies": {
"@types/diff": "^7.0.1",
"@types/inquirer": "^8.2.10",
"@types/lodash": "^4.17.16",
"@types/yargs": "^17.0.33",
"vitest": "^3.0.7"
},
"dependencies": {
"diff": "^7.0.0",
"import-cwd": "^3.0.0",
"inquirer": "^8.2.6",
"lodash": "^4.17.21",
"typescript": "^5.5.3",
"yargs": "^17.7.2"
},
"packageManager": "npm@8.19.4+sha256.2667a1b8300f315d223e43c307fbe946eb8b97792af399424ef67ea9cb0a72f6"
}