-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
52 lines (52 loc) · 1.28 KB
/
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
44
45
46
47
48
49
50
51
52
{
"name": "types-react-codemod",
"version": "3.5.0",
"bin": "bin/types-react-codemod.cjs",
"scripts": {
"format": "prettier . --write",
"format:check": "prettier . --check",
"release": "yarn changeset publish",
"test:lint": "eslint bin/**/*.{cjs,js,mjs} transforms/**/*.{cjs,js,mjs}",
"test:renovate": "npx --package [email protected] -c renovate-config-validator",
"test:types": "tsc -p tsconfig.json --noEmit",
"test:unit": "jest"
},
"engines": {
"node": "18.x || 20.x || 22.x"
},
"dependencies": {
"@babel/core": "^7.17.8",
"@babel/parser": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@babel/types": "^7.17.8",
"inquirer": "^12.0.0",
"jscodeshift": "^17.0.0",
"yargs": "^17.4.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.22.0",
"@jest/globals": "^29.0.0",
"@types/inquirer": "^9.0.0",
"@types/jscodeshift": "^0.12.0",
"@types/node": "^20.0.0",
"@types/yargs": "^17.0.10",
"dedent": "^1.0.0",
"eslint": "^8.12.0",
"jest": "^29.0.0",
"prettier": "^3.0.0",
"prettier-v2": "npm:prettier@^2.8.8",
"typescript": "^5.0.0"
},
"license": "MIT",
"packageManager": "[email protected]",
"prettier": {
"useTabs": true
},
"publishConfig": {
"access": "public"
},
"volta": {
"node": "20.18.1"
}
}