File size: 1,107 Bytes
1e92f2d |
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": "@next/codemod",
"version": "15.4.2-canary.18",
"license": "MIT",
"repository": {
"type": "git",
"url": "vercel/next.js",
"directory": "packages/next-codemod"
},
"dependencies": {
"cheerio": "1.0.0-rc.9",
"commander": "12.1.0",
"execa": "4.0.3",
"find-up": "4.1.0",
"globby": "11.0.1",
"is-git-clean": "1.1.0",
"jscodeshift": "17.0.0",
"picocolors": "1.0.0",
"prompts": "2.4.2",
"semver": "7.6.3",
"strip-ansi": "6.0.0"
},
"files": [
"transforms/*.js",
"transforms/lib/**/*.js",
"bin/*.js",
"lib/**/*.js",
"lib/cra-to-next/gitignore"
],
"scripts": {
"build": "pnpm tsc -d -p tsconfig.json",
"prepublishOnly": "cd ../../ && turbo run build",
"dev": "pnpm tsc -d -w -p tsconfig.json",
"test": "jest",
"test:upgrade-fixture": "./scripts/test-upgrade-fixture.sh"
},
"bin": "./bin/next-codemod.js",
"devDependencies": {
"@types/find-up": "4.0.0",
"@types/jscodeshift": "0.11.0",
"@types/prompts": "2.4.2",
"@types/semver": "7.3.1",
"typescript": "5.8.2"
}
}
|