forked from LadybirdBrowser/ladybird.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 784 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
26
27
28
29
30
{
"name": "ladybird.org",
"module": "index.ts",
"type": "module",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build && bun run ./generate-middleware.ts",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --write \"**/*.{astro,ts,tsx,md,mdx,js,cjs,mjs,jsx}\""
},
"devDependencies": {
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.13",
"@types/bun": "latest",
"prettier": "^3.3.2",
"prettier-plugin-astro": "^0.14.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@astrojs/sitemap": "^3.1.6",
"@astrojs/tailwind": "^5.1.0",
"astro": "^4.11.5",
"tailwindcss": "^3.4.4"
}
}