worker-links/package.json
2022-01-13 02:46:46 +00:00

21 lines
662 B
JSON

{
"private": true,
"name": "worker-links",
"version": "1.0.0",
"description": "Simple link shortener for Cloudflare Workers.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write '**/*.{js,css,json,md}'",
"deploy": "wrangler publish",
"debug": "miniflare --debug index.js -k kv -b WORKERLINKS_SECRET=putyoursecrethere",
"local": "miniflare index.js -k kv -b WORKERLINKS_SECRET=$WORKERLINKS_SECRET"
},
"author": "Erisa A",
"license": "MIT",
"devDependencies": {
"miniflare": "^2.0.0",
"@cloudflare/wrangler": "^1.19.7",
"prettier": "^2.5.1"
}
}