-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.14 KB
/
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
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
{
"name": "kitsu-verify",
"private": true,
"type": "module",
"license": "AGPL-3.0-only",
"author": {
"email": "[email protected]",
"name": "Kio",
"url": "https://kitsu.life"
},
"maintainers": [
{
"email": "[email protected]",
"name": "CPlusPatch",
"url": "https://cpluspatch.com"
},
{
"email": "[email protected]",
"name": "Kio",
"url": "https://kitsu.life"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/kio/kitsu-verify.git"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "bunx @biomejs/biome check ."
},
"dependencies": {
"@hackmd/markdown-it-task-lists": "^2.1.4",
"@hookform/resolvers": "^3.9.0",
"@radix-ui/react-aspect-ratio": "^1.1.0",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-hover-card": "^1.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.2",
"@shikijs/markdown-it": "^1.10.3",
"@stripe/react-stripe-js": "^2.7.3",
"@stripe/stripe-js": "^4.1.0",
"@uidotdev/usehooks": "^2.4.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"lucide-react": "^0.408.0",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.0.1",
"markdown-it-container": "^4.0.0",
"markdown-it-toc-done-right": "^4.2.0",
"mitt": "^3.0.1",
"nanoid": "^5.0.7",
"next": "^15.0.0-rc.0",
"next-runtime-env": "^3.2.2",
"next-themes": "^0.3.0",
"react": "^19.0.0-rc-fb9a90fa48-20240614",
"react-arborist": "^3.4.0",
"react-dom": "^19.0.0-rc-fb9a90fa48-20240614",
"react-hook-form": "^7.52.1",
"react-parallax-tilt": "^1.7.232",
"react-timeago-i18n": "^2.2.1",
"shiki": "^1.10.3",
"tailwind-merge": "^2.4.0",
"tailwindcss-animate": "^1.0.7",
"use-resize-observer": "^9.1.0",
"vaul": "^0.9.1",
"zod": "^3.23.8"
},
"overrides": {
"react": "^19.0.0-rc-fb9a90fa48-20240614",
"react-dom": "^19.0.0-rc-fb9a90fa48-20240614",
"next": "^15.0.0-rc.0"
},
"devDependencies": {
"typescript": "^5.5.3",
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"postcss": "^8.4.39",
"tailwindcss": "^3.4.4",
"@biomejs/biome": "^1.8.3",
"@iconify-icon/react": "^2.1.0",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.13",
"@types/markdown-it-container": "^2.0.10",
"@types/bun": "^1.1.6"
},
"trustedDependencies": ["@biomejs/biome", "sharp"]
}