-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.09 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
{
"name": "website",
"description": "Personal website",
"homepage": "https://github.com/RobCC/web",
"author": "robcc",
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"start": "pnpm dev",
"dev": "vp dev",
"build": "tsc -b && vp build",
"pub": "pnpm build && echo www.jrobcc.com > ./dist/CNAME && gh-pages -d dist",
"lint": "vp lint src",
"tsc": "tsc --noEmit",
"prepare": "vp config"
},
"dependencies": {
"clsx": "^2.1.1",
"marked": "^18.0.2",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"tinykeys": "^3.0.0",
"wouter": "^3.9.0",
"zustand": "^5.0.12"
},
"devDependencies": {
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"gh-pages": "^6.3.0",
"typescript": "^6.0.2",
"vite": "npm:@voidzero-dev/vite-plus-core@^0.1.16",
"vite-plus": "latest"
},
"packageManager": "pnpm@10.32.1",
"pnpm": {
"overrides": {
"vite": "npm:@voidzero-dev/vite-plus-core@latest",
"vitest": "npm:@voidzero-dev/vite-plus-test@latest"
}
}
}