-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 890 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"name": "junction",
"description": "Short-URL service built for Cloudflare Workers, Pages, and KV.",
"version": "1.1.3",
"author": "tycrek <[email protected]> (https://tycrek.com)",
"repository": "github:tycrek/junction",
"scripts": {
"build": "esbuild --bundle src/index.ts --format=esm --outfile=dist/_worker.js",
"pagery": "node ./node_modules/pagery/dist/pagery.js --data=package.json --output=dist/",
"dev": "npm run build && npm run pagery && npx wrangler pages dev dist/ --kv junction",
"publish": "npm run build && npx wrangler pages publish dist/ --project-name=junction"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20231218.0",
"@tailwindcss/typography": "^0.5.10",
"esbuild": "^0.19.11",
"hash.js": "^1.1.7",
"jstransformer-markdown-it": "^3.0.0",
"pagery": "^0.5.1",
"typescript": "^5.3.3"
},
"dependencies": {
"hono": "^3.12.2"
}
}