package.json 695 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "sync-package-json-deps",
  3. "version": "0.0.1",
  4. "description": "a script to find and fix out-of-sync dependencies in package.json files",
  5. "main": "src/sync-package-json-deps.js",
  6. "scripts": {
  7. "build": "nexe -i src/sync-package-json-deps.js -o dist/sync-package-json-deps --build --python=$(which python3)",
  8. "sync": "node src/sync-package-json-deps.js"
  9. },
  10. "bin": {
  11. "sync-package-json-deps": "src/sync-package-json-deps.js"
  12. },
  13. "keywords": [],
  14. "author": "",
  15. "license": "ISC",
  16. "dependencies": {
  17. "glob": "^11.0.0",
  18. "semver": "^7.6.3"
  19. },
  20. "devDependencies": {
  21. "@eslint/js": "^9.15.0",
  22. "eslint": "^9.15.0",
  23. "nexe": "^4.0.0-rc.6"
  24. }
  25. }