epd
Version:
Enhanced peer dependency resolution for npm, yarn, and pnpm
66 lines (65 loc) • 1.68 kB
JSON
{
"name": "epd",
"version": "1.3.3",
"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",
"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",
"prepublishOnly": "npm run build",
"dev": "tsc --watch",
"lint": "eslint src/**/*.ts",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "npm run build"
},
"keywords": [
"npm",
"yarn",
"pnpm",
"peer-dependencies",
"monorepo",
"dependency-management"
],
"author": "",
"license": "MIT",
"dependencies": {},
"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": ">=14.16.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"
}