-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.15 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
{
"name": "repoframe",
"version": "1.0.1",
"description": "Generate polished social cards for GitHub repos",
"contributors": [
"alfaarghya"
],
"private": true,
"packageManager": "pnpm@11.17.0",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"prepare": "husky",
"dev": "next dev --port 3000",
"build": "next build --webpack",
"start": "next start --port 3000",
"typecheck": "next typegen && tsc --noEmit",
"test": "vitest run",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format .",
"format:fix": "biome format --write .",
"check": "biome check . && biome format .",
"check:fix": "biome check --write . && biome format --write ."
},
"dependencies": {
"@fontsource-variable/archivo": "5.3.0",
"@fontsource-variable/azeret-mono": "5.3.0",
"@fontsource-variable/dm-sans": "5.3.0",
"@fontsource-variable/fira-code": "5.3.0",
"@fontsource-variable/inconsolata": "5.3.0",
"@fontsource-variable/jetbrains-mono": "5.3.0",
"@fontsource-variable/manrope": "5.3.0",
"@fontsource-variable/outfit": "5.3.0",
"@fontsource-variable/roboto-mono": "5.3.0",
"@fontsource-variable/sora": "5.3.0",
"@fontsource-variable/source-code-pro": "5.3.0",
"@fontsource-variable/space-grotesk": "5.3.0",
"@gsap/react": "^2.1.2",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"gsap": "^3.15.0",
"konva": "10.0.2",
"lenis": "^1.3.26",
"lucide-react": "1.31.0",
"motion": "^13.1.1",
"next": "16.3.0",
"radix-ui": "1.6.7",
"react": "19.2.8",
"react-dom": "19.2.8",
"tailwind-merge": "3.6.0",
"zustand": "5.0.8"
},
"devDependencies": {
"@biomejs/biome": "2.5.5",
"@tailwindcss/postcss": "4.3.3",
"@types/node": "^26.2.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"husky": "9.1.7",
"lint-staged": "17.2.0",
"tailwindcss": "4.3.3",
"tw-animate-css": "1.4.0",
"typescript": "~6.0.3",
"vitest": ">=4.1.0"
},
"lint-staged": {
"*.{js,jsx,mjs,cjs,ts,tsx,json,jsonc,css}": [
"biome check --write --no-errors-on-unmatched"
]
}
}