UNPKG

depshield

Version:

Smart Dependency Analyzer & Optimizer - Find unused npm packages, reduce bundle size, and improve project health with AST-based detection.

80 lines 1.93 kB
{ "name": "depshield", "version": "1.1.0", "description": "Smart Dependency Analyzer & Optimizer - Find unused npm packages, reduce bundle size, and improve project health with AST-based detection.", "main": "dist/index.js", "type": "module", "engines": { "node": ">=20.0.0" }, "bin": { "depshield": "bin/depshield.js" }, "scripts": { "build": "tsc", "start": "node dist/index.js", "test": "jest", "lint": "eslint src/**/*.ts", "format": "prettier --write \"src/**/*.{ts,js,json}\"", "prepublishOnly": "npm run build", "prepare": "npm run build" }, "keywords": [ "dependency-analysis", "unused-dependencies", "npm-check", "depcheck", "bundle-size", "performance", "optimization", "cleanup", "maintenance", "cli", "typescript", "node", "static-analysis", "dev-tool" ], "author": "Tisankan <contact@tisankan.dev> (https://tisankan.dev)", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/rascal-sl/depshield.git" }, "bugs": { "url": "https://github.com/rascal-sl/depshield/issues" }, "homepage": "https://github.com/rascal-sl/depshield#readme", "publishConfig": { "access": "public" }, "files": [ "dist", "bin", "README.md", "LICENSE", "package-metadata.json" ], "dependencies": { "@babel/parser": "^7.28.5", "@babel/traverse": "^7.28.5", "@types/js-yaml": "^4.0.9", "chalk": "^5.6.2", "commander": "^14.0.2", "glob": "^13.0.0", "js-yaml": "^4.1.1", "ora": "^9.0.0" }, "devDependencies": { "@types/babel__traverse": "^7.28.0", "@types/jest": "^30.0.0", "@types/node": "^24.10.1", "eslint": "^9.39.1", "jest": "^30.2.0", "prettier": "^3.6.2", "ts-jest": "^29.4.5", "ts-node": "^10.9.2", "typescript": "^5.9.3", "typescript-eslint": "^8.47.0" } }