UNPKG

@dephub/package-install

Version:

Install packages with flexible scope support using your preferred package manager

78 lines 1.84 kB
{ "name": "@dephub/package-install", "version": "1.0.2", "description": "Install packages with flexible scope support using your preferred package manager", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "package-install": "dist/cli.js" }, "keywords": [ "package", "install", "package-manager", "npm", "yarn", "pnpm", "bun", "dependency", "workspace", "global", "dev-dependencies", "cli", "installation" ], "author": { "name": "Estarlin R", "email": "dev@estarlincito.com", "url": "https://estarlincito.com" }, "engines": { "node": ">=18.0.0" }, "files": [ "LICENSE", "README.md", "dist" ], "license": "MIT", "homepage": "https://github.com/estarlincito/dephub-package-install#readme", "repository": { "type": "git", "url": "https://github.com/estarlincito/dephub-package-install.git" }, "bugs": { "url": "https://github.com/estarlincito/dephub-package-install/issues" }, "publishConfig": { "access": "public" }, "dependencies": { "@dephub/ask": "^1.0.0", "@dephub/cli": "^1.0.0", "@dephub/logger": "^1.1.0", "@dephub/package-manager": "^1.0.0", "@dephub/spawn": "^1.0.0" }, "devDependencies": { "@dephub/glob": "^1.0.0", "@dephub/lint": "^1.0.0", "@dephub/lint-ts": "^1.0.0", "@dephub/path": "^1.0.0", "@types/node": "^24.3.1", "eslint": "^9.37.0", "typescript": "^5.9.2", "vite": "^7.1.4", "vite-plugin-dts": "^4.5.4" }, "scripts": { "release": "pnpm publish", "check-types": "tsc --noEmit --skipLibCheck", "lint": "lint . --max-warnings 0", "lint:fix": "lint . --fix", "clean": "rm -rf dist", "build": "vite build", "dev": "vite build -w --mode development" } }