21 lines
663 B
JSON
21 lines
663 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": {
|
|
"@cloudflare/wrangler": "^1.17.0",
|
|
"miniflare": "^1.1.0",
|
|
"prettier": "^1.18.2"
|
|
}
|
|
}
|