-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 993 Bytes
/
package.json
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
{
"name": "type-import-codemod",
"version": "1.0.1",
"description": "Combine type and value imports using Typescript 4.5 type modifier syntax",
"repository": {
"type": "git",
"url": "https://github.com/IanVS/type-import-codemod.git"
},
"homepage": "https://github.com/IanVS/type-import-codemod/#readme",
"license": "MIT",
"keywords": [
"jscodeshift",
"codemod",
"codeshift",
"typescript",
"import",
"type"
],
"main": "dist/codeshift.config.js",
"type": "commonjs",
"bin": {
"type-import-codemod": "./bin/type-import-codemod.js"
},
"files": [
"src/transform.ts"
],
"scripts": {
"test:ci": "vitest run",
"test": "vitest"
},
"devDependencies": {
"@codeshift/test-utils": "^0.1.4",
"@types/jscodeshift": "^0.11.3",
"@types/node": "^16.11.0",
"prettier": "^2.5.1",
"typescript": "4.6.X",
"vitest": "^0.6.1"
},
"dependencies": {
"execa": "^5.1.1",
"jscodeshift": "^0.13.1"
}
}