-
Notifications
You must be signed in to change notification settings - Fork 343
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.31 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.31 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
91
92
93
94
95
96
97
98
99
100
{
"name": "kuma-mieru",
"description": "A 3rd-party Uptime Kuma monitoring dashboard built on Next.js 16, TypeScript and Recharts.",
"version": "1.7.0",
"author": "Alice39s",
"license": "MPL-2.0",
"homepage": "https://github.com/Alice39s/kuma-mieru",
"repository": {
"type": "git",
"url": "https://github.com/Alice39s/kuma-mieru.git"
},
"private": true,
"type": "module",
"scripts": {
"dev": "bun run generate && bun run lint:fix && next dev --turbopack --port 3881",
"start": "bun run generate && bun ./scripts/init-start.ts && bun .next/standalone/server.js",
"start:docker": "bun run generate && node ./server.js",
"build": "bun run generate && next build",
"build:analyze": "bun run generate && ANALYZE=true next build",
"build:cloudflare": "CF_DEPLOYMENT=true bun run generate && opennextjs-cloudflare build",
"deploy:cloudflare": "CF_DEPLOYMENT=true opennextjs-cloudflare deploy",
"lint": "oxlint .",
"lint:fix": "oxlint --fix . && oxfmt .",
"format": "oxfmt .",
"generate": "bun scripts/generate-config.ts && bun scripts/generate-image-domains.ts && bun scripts/banner.ts",
"generate:config": "bun scripts/generate-config.ts",
"generate:domains": "bun scripts/generate-image-domains.ts",
"generate:banner": "bun scripts/banner.ts"
},
"dependencies": {
"@expressive-code/plugin-shiki": "^0.41.7",
"@heroui/react": "2.8.9",
"@heroui/theme": "2.4.26",
"@mdx-js/mdx": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@next/bundle-analyzer": "^16.2.4",
"@opennextjs/cloudflare": "^1.19.3",
"@react-aria/ssr": "3.10.0",
"@react-aria/visually-hidden": "3.9.0",
"@sankyu/react-circle-flags": "^1.6.7",
"@tailwindcss/postcss": "^4.2.4",
"chalk": "5.6.2",
"cheerio": "^1.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dayjs": "^1.11.20",
"expressive-code": "^0.41.7",
"framer-motion": "^12.38.0",
"intl-messageformat": "^11.2.1",
"json5": "^2.2.3",
"lucide-react": "^1.8.0",
"next": "^16.2.4",
"next-intl": "^4.9.1",
"next-themes": "^0.4.6",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"recharts": "^3.8.1",
"rehype-expressive-code": "^0.41.7",
"rehype-external-links": "^3.0.0",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"remark-smartypants": "^3.0.2",
"sonner": "^2.0.7",
"swr": "^2.4.1",
"tailwind-merge": "^3.5.0",
"tm-themes": "^1.12.2",
"unified": "^11.0.5",
"usehooks-ts": "^3.1.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@next/eslint-plugin-next": "16.2.4",
"@react-types/shared": "3.34.0",
"@tailwindcss/typography": "^0.5.19",
"@types/node": "25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "8.59.0",
"@typescript-eslint/parser": "8.59.0",
"dotenv": "^17.4.2",
"oxfmt": "^0.46.0",
"oxlint": "^1.61.0",
"postcss": "8.5.10",
"shiki": "^4.0.2",
"tailwind-variants": "1.0.0",
"tailwindcss": "^4.2.1",
"typescript": "^6.0.3",
"wrangler": "^4.84.1"
},
"trustedDependencies": [
"@heroui/shared-utils",
"sharp",
"workerd"
]
}