UNPKG

recently-published

Version:

A simple CLI tool to get the most recently published versions of a package on npm or see which install package versions were most recently published.

66 lines (65 loc) 1.74 kB
{ "name": "recently-published", "description": "A simple CLI tool to get the most recently published versions of a package on npm or see which install package versions were most recently published.", "keywords": [ "cli", "npm", "package", "version", "recent", "published" ], "version": "0.9.2", "license": "MIT", "homepage": "https://github.com/mggwxyz/recently-published#readme", "author": { "name": "Michael Gilbertson", "email": "mggwxyz@gmail.com", "url": "https://michaelgilbertson.io" }, "type": "module", "main": "dist/index.cjs", "module": "dist/index.js", "scripts": { "test": "vitest run", "prebuild": "npm run test", "build": "tsup", "prepublishOnly": "pnpm build" }, "files": [ "dist" ], "bin": { "recently-published": "dist/index.js" }, "devDependencies": { "@eslint/js": "^9.21.0", "@stylistic/eslint-plugin-ts": "^2.13.0", "@types/eslint-config-prettier": "^6.11.3", "@types/eslint__js": "^8.42.3", "@types/object-hash": "^3.0.6", "@types/react": "^18.3.18", "@types/semver": "^7.5.8", "@types/validate-npm-package-name": "^4.0.2", "@typescript-eslint/parser": "^8.25.0", "esbuild": "^0.25.0", "eslint": "^9.21.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-prettier": "^5.2.3", "execa": "^9.5.2", "prettier": "3.3.3", "tsup": "^8.4.0", "tsx": "^4.19.3", "typescript": "~5.7.3", "typescript-eslint": "^8.25.0", "vitest": "^2.1.9" }, "dependencies": { "commander": "^12.1.0", "ink": "^5.1.1", "ink-spinner": "^5.0.0", "object-hash": "^3.0.0", "semver": "^7.7.1", "validate-npm-package-name": "^5.0.1" } }