UNPKG

@rayburst/sharity

Version:

Analyze shared package usage across monorepos - calculate symbol sharing percentages, track exclusive imports, and identify unused exports

62 lines (61 loc) 1.41 kB
{ "name": "@rayburst/sharity", "version": "0.1.2", "description": "Analyze shared package usage across monorepos - calculate symbol sharing percentages, track exclusive imports, and identify unused exports", "keywords": [ "monorepo", "analyzer", "shared", "exports", "imports", "typescript", "cli", "unused-exports", "package-analyzer" ], "license": "MIT", "author": "rayburst", "main": "dist/api/index.js", "types": "dist/api/index.d.ts", "bin": { "sharity": "./bin/sharity.js" }, "files": [ "dist", "bin", "README.md" ], "repository": { "type": "git", "url": "https://github.com/rayburst/sharity.git" }, "scripts": { "build": "tsc", "dev": "tsc --watch", "lint": "eslint . --ext .ts", "lint:fix": "eslint . --ext .ts --fix", "test": "jest", "test:watch": "jest --watch", "prepublishOnly": "npm run build" }, "dependencies": { "chalk": "^4.1.2", "cli-table3": "^0.6.5", "commander": "^12.1.0", "fast-glob": "^3.3.2", "typescript": "^5.3.0" }, "devDependencies": { "@types/jest": "^29.5.13", "@types/node": "^20.17.6", "@typescript-eslint/eslint-plugin": "^6.21.0", "@typescript-eslint/parser": "^6.21.0", "eslint": "^8.57.1", "jest": "^29.7.0", "ts-jest": "^29.2.5", "ts-node": "^10.9.2" }, "engines": { "node": ">=16" } }