| 12345678910111213141516171819202122232425 |
- {
- "name": "sync-package-json-deps",
- "version": "0.0.1",
- "description": "a script to find and fix out-of-sync dependencies in package.json files",
- "main": "src/sync-package-json-deps.js",
- "scripts": {
- "build": "nexe -i src/sync-package-json-deps.js -o dist/sync-package-json-deps --build --python=$(which python3)",
- "sync": "node src/sync-package-json-deps.js"
- },
- "bin": {
- "sync-package-json-deps": "src/sync-package-json-deps.js"
- },
- "keywords": [],
- "author": "",
- "license": "ISC",
- "dependencies": {
- "glob": "^11.0.0",
- "semver": "^7.6.3"
- },
- "devDependencies": {
- "@eslint/js": "^9.15.0",
- "eslint": "^9.15.0",
- "nexe": "^4.0.0-rc.6"
- }
- }
|