UNPKG

file-mover

Version:

Script to move files and update imports automatically

67 lines (66 loc) 1.86 kB
{ "name": "file-mover", "version": "0.4.5", "description": "Script to move files and update imports automatically", "main": "dist/index.js", "type": "module", "files": [ "dist", "README.md", "LICENSE" ], "engines": { "node": ">=14.0.0" }, "scripts": { "move": "node ./dist/index.js", "test-move": "node ./dist/index.js --dry-run", "build": "tsc", "postbuild": "node scripts/fix-extensions.js", "start": "npm run build && node --max-old-space-size=16000 ./dist/index.js ./temp/example.json", "watch": "tsc --watch --project tsconfig.json", "startv": "npm run build && node --max-old-space-size=16000 ./dist/index.js ./temp/example.json --verbose", "prepublishOnly": "npm run build", "lint": "eslint . --fix", "lint:check": "eslint .", "perf:report": "node scripts/generate-performance-report.js" }, "dependencies": { "@babel/parser": "^7.27.5", "@babel/traverse": "^7.27.4", "fast-glob": "^3.3.3", "glob": "^10.3.10" }, "bin": { "file-mover": "dist/index.js" }, "keywords": [ "refactor", "imports", "file-mover", "typescript", "javascript", "code-refactoring", "import-updater" ], "author": "James Cheung", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/jcheung824/file-mover-tool.git" }, "bugs": { "url": "https://github.com/jcheung824/file-mover-tool/issues" }, "homepage": "https://github.com/jcheung824/file-mover-tool#readme", "devDependencies": { "@types/babel__traverse": "^7.20.7", "@types/node": "^22.15.30", "@typescript-eslint/eslint-plugin": "^8.34.0", "@typescript-eslint/parser": "^8.34.0", "eslint": "^8.56.0", "eslint-config-prettier": "^10.1.5", "eslint-plugin-prettier": "^5.5.0", "prettier": "^3.5.3" } }