UNPKG

dedpaste

Version:

CLI pastebin application using Cloudflare Workers and R2

72 lines (71 loc) 2 kB
{ "name": "dedpaste", "version": "1.7.0", "description": "CLI pastebin application using Cloudflare Workers and R2", "main": "dist/index.js", "type": "module", "scripts": { "test": "NODE_OPTIONS=\"--experimental-vm-modules\" mocha test/**/*.test.js", "dev": "npm run build:tailwind && concurrently \"npm run watch:tailwind\" \"wrangler dev\"", "deploy": "npm run build && wrangler deploy", "build": "tsc && tsc -p tsconfig.cli.json && npm run build:tailwind", "build:tailwind": "tailwindcss -i src/styles/tailwind.css -o public/styles.css --minify", "watch:tailwind": "tailwindcss -i src/styles/tailwind.css -o public/styles.css --watch", "format": "prettier --write 'src/**/*.{js,ts}'", "lint": "eslint --ext .js,.ts src/", "postinstall": "chmod +x ./cli/index.js", "prepublishOnly": "npm run build", "version": "git add -A ." }, "bin": { "dedpaste": "./cli/index.js" }, "files": [ "dist", "cli", "completion", "public", "README.md" ], "keywords": [ "pastebin", "cli", "cloudflare", "r2" ], "author": "Cameron Banowsky", "license": "ISC", "repository": { "type": "git", "url": "git+https://github.com/anoncam/dedpaste.git" }, "bugs": { "url": "https://github.com/anoncam/dedpaste/issues" }, "homepage": "https://github.com/anoncam/dedpaste#readme", "engines": { "node": ">=14" }, "devDependencies": { "@cloudflare/workers-types": "^4.20250303.0", "@types/node": "^22.13.10", "autoprefixer": "^10.4.21", "chai": "^5.0.0", "concurrently": "^9.1.2", "jest": "^29.7.0", "mocha": "^10.2.0", "postcss": "^8.5.3", "tailwindcss": "^3.4.17", "typescript": "^5.8.2", "wrangler": "^3.113.0" }, "dependencies": { "clipboardy": "^4.0.0", "commander": "^13.1.0", "inquirer": "^9.2.15", "keybase-api": "^0.0.1", "mime-types": "^2.1.35", "node-fetch": "^3.3.2", "openpgp": "^6.1.0" } }