OpenPanel/packages/codemod/package.json

54 lines
1.4 KiB
JSON
Raw Permalink Normal View History

2024-05-08 17:58:53 +00:00
{
"name": "@refinedev/codemod",
"description": "refine Codemod CLI. refine is a React-based framework for building internal tools, rapidly. It ships with Ant Design System, an enterprise-level UI toolkit.",
"version": "4.1.6",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"private": false,
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"build": "tsc -d -p tsconfig.json",
"start": "tsc -w -d -p tsconfig.json",
"jscodeshift": "jscodeshift -d --transform=src/transformations/refine1-to-refine2.ts"
},
"author": "refine",
"devDependencies": {
"@types/eslint": "^7.28.2",
"@types/inquirer": "^8.2.5",
"@types/jest": "^29.2.4",
"@types/jscodeshift": "^0.11.5",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"tslib": "^2.3.1",
"typescript": "^4.7.4"
},
"dependencies": {
"@npmcli/package-json": "3.0.0",
"chalk": "^4.1.2",
"cheerio": "1.0.0-rc.9",
"execa": "^5.1.1",
"globby": "^11.1.0",
"inquirer": "^8.2.5",
"is-git-clean": "1.1.0",
"jscodeshift": "0.13.1",
"meow": "7.0.1",
"semver": "7.3.8"
},
"repository": {
"type": "git",
"url": "https://github.com/refinedev/refine.git",
"directory": "packages/codemod"
},
"publishConfig": {
"access": "public"
},
"bin": "./dist/index.js"
}