-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.17 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
{
"name": "resumex",
"version": "0.1.1",
"private": true,
"description": "resumex by karnstack.com - AI-first resume builder for Claude Code. Local-only. Beautiful, print-native templates.",
"homepage": "https://resumex.karnstack.com",
"author": "karnstack.com",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "vite build",
"preview": "pnpm run build && wrangler dev",
"test": "vitest --passWithNoTests",
"test:run": "vitest run --passWithNoTests",
"typecheck": "tsc --noEmit",
"format": "prettier --write \"src/**/*.{ts,tsx,css,md}\" \"templates/**/*.{ts,tsx,css}\" \"resumes/**/*.{ts,tsx,css}\"",
"sync": "node scripts/sync-templates.mjs && node scripts/sync-resumes.mjs",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "node scripts/release-tag.mjs",
"hero": "node scripts/build-hero.mjs",
"prepare": "node scripts/sync-templates.mjs && node scripts/sync-resumes.mjs",
"pretypecheck": "node scripts/sync-templates.mjs && node scripts/sync-resumes.mjs",
"deploy": "pnpm run build && wrangler deploy"
},
"engines": {
"node": ">=24",
"pnpm": ">=10"
},
"packageManager": "pnpm@10.33.0",
"dependencies": {
"@fontsource-variable/figtree": "^5.2.10",
"@radix-ui/react-slot": "^1.2.4",
"@tanstack/react-router": "^1.169.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"radix-ui": "^1.4.3",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"zod": "^4.4.1"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.31.0",
"@tailwindcss/vite": "^4.2.4",
"@tanstack/router-plugin": "^1.167.31",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"jsdom": "^29.1.1",
"playwright": "^1.59.1",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.8.0",
"tailwindcss": "^4.2.4",
"typescript": "^6.0.3",
"vite": "^8.0.10",
"vitest": "^4.1.5",
"wrangler": "^4.87.0"
}
}