-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.66 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.66 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
{
"name": "portfolio",
"version": "1.0.0",
"description": "My portfolio with Astro using TypeScript.",
"license": "MIT",
"private": true,
"author": {
"name": "roottool",
"url": "https://github.com/roottool"
},
"homepage": "https://roottool.vercel.app",
"repository": {
"type": "git",
"url": "https://github.com/roottool/portfolio.git"
},
"bugs": {
"url": "https://github.com/roottool/portfolio/issues"
},
"scripts": {
"dev": "astro dev",
"build": "bun run scripts/generate-og.ts && astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "run-s -c lint:*",
"lint:dprint": "dprint check",
"lint:eslint": "eslint --color --max-warnings=0 .",
"format": "dprint fmt",
"fix": "run-s -c fix:* format",
"fix:eslint": "eslint --color --fix .",
"typecheck": "run-s -c typecheck:*",
"typecheck:astro": "astro check",
"typecheck:tsc": "tsc --noEmit"
},
"msw": {
"workerDirectory": "public"
},
"dependencies": {
"@astrojs/check": "0.9.8",
"@fontsource/cinzel-decorative": "5.2.8",
"@fontsource/cormorant-garamond": "5.2.11",
"@fontsource/cormorant-sc": "5.2.8",
"astro": "6.1.3"
},
"devDependencies": {
"@eslint/js": "9.39.4",
"@resvg/resvg-js": "2.6.2",
"@tailwindcss/vite": "4.2.2",
"@types/node": "25.5.2",
"dprint": "0.53.2",
"eslint": "9.39.4",
"eslint-config-flat-gitignore": "2.3.0",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-astro": "1.6.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-unused-imports": "4.4.1",
"globals": "16.5.0",
"npm-run-all2": "8.0.4",
"satori": "0.26.0",
"tailwindcss": "4.2.2",
"typescript": "5.9.3",
"typescript-eslint": "8.58.0"
}
}