UNPKG

npm-to-cdn

Version:

A CLI tool to get CDN links for any npm package.

44 lines (43 loc) 883 B
{ "name": "npm-to-cdn", "version": "1.0.0", "description": "A CLI tool to get CDN links for any npm package.", "main": "dist/index.js", "bin": { "n2cdn": "dist/index.js" }, "scripts": { "build": "tsc", "start": "node dist/index.js", "test": "jest" }, "keywords": [ "cli", "cdn", "npm", "unpkg", "jsdelivr", "esm.sh", "skypack" ], "author": "", "license": "MIT", "dependencies": { "clipboardy": "^3.0.0", "node-fetch": "^2.6.7", "yargs": "^17.7.2" }, "devDependencies": { "@types/jest": "^29.5.14", "@types/node": "^24.0.4", "@types/node-fetch": "^2.6.12", "@types/yargs": "^17.0.33", "jest": "^29.0.0", "ts-jest": "^29.0.0", "typescript": "^5.0.0" }, "jest": { "preset": "ts-jest", "testEnvironment": "node" } }