-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.8 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.8 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "fortuna-web",
"version": "1.0.0",
"description": "A Static HTML page generator",
"main": "index.js",
"scripts": {
"dev": "bun --bun astro dev --host --port 4321",
"dev:clean": "rimraf node_modules/.vite && bun --bun astro dev --host --port 4321",
"start": "bun --bun astro preview --host --port 4321",
"build": "bun astro build",
"workers:dev": "bun run build && wrangler dev",
"workers:deploy": "bun run build && wrangler deploy",
"clean": "rimraf dist"
},
"author": "Quiradon",
"license": "ISC",
"packageManager": "bun@1.3.0",
"engines": {
"bun": ">=1.3.0"
},
"dependencies": {
"@astrojs/cloudflare": "^12.6.12",
"@astrojs/react": "^4.4.2",
"@astrojs/sitemap": "^3.7.0",
"@dice-roller/rpg-dice-roller": "^5.5.1",
"@discord/embedded-app-sdk": "^2.4.0",
"@fontsource/cinzel": "^5.2.8",
"@fontsource/im-fell-english": "^5.2.6",
"@fontsource/inter": "^5.2.8",
"@fontsource/jetbrains-mono": "^5.2.8",
"@fontsource/merriweather": "^5.2.11",
"@fontsource/montserrat": "^5.2.8",
"@fontsource/playfair-display": "^5.2.8",
"@fontsource/roboto": "^5.2.9",
"@lucide/astro": "^0.562.0",
"@mdxeditor/editor": "^3.52.3",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"astro-i18n-aut": "^0.7.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"emoji-picker-react": "^4.16.1",
"fast-glob": "^3.3.3",
"fs-extra": "^11.3.3",
"html-minifier": "^4.0.0",
"html-to-image": "^1.11.13",
"lucide-react": "^0.562.0",
"mathjs": "^15.1.0",
"mediabunny": "^1.28.0",
"p-limit": "^6.2.0",
"rc-mentions": "^2.20.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-image-crop": "^11.0.10",
"react-markdown": "^10.1.0",
"react-rnd": "^10.5.2",
"rehype-highlight": "^7.0.2",
"rehype-raw": "^7.0.0",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"unified": "^11.0.5"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.19",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"astro": "5.17.1",
"autoprefixer": "^10.4.23",
"cssnano": "^7.1.2",
"postcss": "^8.5.6",
"rimraf": "^5.0.10",
"tailwindcss": "3.4.17",
"tailwindcss-animate": "^1.0.7",
"terser": "^5.44.1",
"wrangler": "^4.59.2"
}
}