UNPKG

epd

Version:

Enhanced peer dependency resolution for npm, yarn, and pnpm

76 lines (75 loc) 2.1 kB
{ "name": "epd", "version": "1.4.0", "description": "Enhanced peer dependency resolution for npm, yarn, and pnpm", "type": "module", "bin": { "epd": "dist/index.js" }, "scripts": { "build": "tsc", "test": "node --test test/index.test.js", "scan": "node dist/index.js scan", "security": "node dist/index.js security", "health": "node dist/index.js health --score --recommendations", "optimize": "node dist/index.js optimize", "licenses": "node dist/index.js licenses --report", "update": "node dist/index.js update --safe", "resolve": "node dist/index.js resolve --smart", "outdated": "node dist/index.js outdated", "interactive": "node dist/index.js interactive", "doctor": "node dist/index.js doctor", "fix": "node dist/index.js fix", "clean": "rimraf dist", "install-scanner": "node dist/index.js install-scanner", "resolve-ai": "node dist/index.js resolve --ai", "install-global": "node install-epd-globally.js", "prepublishOnly": "npm run build", "dev": "tsc --watch", "lint": "eslint src/**/*.ts", "format": "prettier --write \"src/**/*.ts\"", "docs": "node docs/serve.js", "prepare": "npm run build" }, "keywords": [ "npm", "yarn", "pnpm", "peer-dependencies", "monorepo", "dependency-management" ], "author": "", "license": "MIT", "dependencies": { "react": "^19.2.0", "react-dom": "^19.2.0" }, "devDependencies": { "@types/node": "^20.10.5", "@types/semver": "^7.5.6", "@typescript-eslint/eslint-plugin": "^6.15.0", "@typescript-eslint/parser": "^6.15.0", "eslint": "^8.56.0", "glob": "^11.0.2", "prettier": "^3.1.1", "rimraf": "^5.0.5", "typescript": "^5.3.3" }, "engines": { "node": ">=16.0.0" }, "files": [ "dist", "README.md", "LICENSE" ], "repository": { "type": "git", "url": "git+https://github.com/davitacols/epd.git" }, "bugs": { "url": "https://github.com/davitacols/epd/issues" }, "homepage": "https://github.com/davitacols/epd#readme" }