-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·39 lines (39 loc) · 1.18 KB
/
package.json
File metadata and controls
executable file
·39 lines (39 loc) · 1.18 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "@tuck/www-dantuck",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"dev:search": "astro build && pagefind --site dist && astro dev",
"start": "astro dev",
"build": "astro build && pagefind --site dist",
"preview": "astro preview",
"astro": "astro",
"publish-preview": "astro build && pagefind --site dist && wrangler pages deploy dist --project-name=www-dantuck --branch=preview",
"publish-release": "astro build && pagefind --site dist && wrangler pages deploy dist --project-name=www-dantuck",
"screenshots": "node scripts/capture-screenshots.mjs",
"worker:deploy": "wrangler deploy --cwd worker",
"worker:tail": "wrangler tail dantuck-scheduled-publish"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp",
"workerd"
]
},
"devDependencies": {
"@astrojs/mdx": "^5.0.1",
"@astrojs/sitemap": "^3.7.1",
"@astrojs/svelte": "^8.0.1",
"@unocss/astro": "^66.6.7",
"astro": "^6.0.5",
"pagefind": "^1.4.0",
"playwright": "^1.58.2",
"satori": "^0.25.0",
"sharp": "^0.34.5",
"svelte": "^5.54.0",
"unocss": "^66.6.7",
"wrangler": "^4.75.0"
}
}