-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.46 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.46 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
{
"name": "ai-website-clone-template",
"version": "0.3.1",
"private": true,
"description": "Clone any website into a clean, modern Next.js codebase using AI coding agents",
"author": "JCodesMore",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/JCodesMore/ai-website-cloner-template.git"
},
"homepage": "https://github.com/JCodesMore/ai-website-cloner-template",
"bugs": {
"url": "https://github.com/JCodesMore/ai-website-cloner-template/issues"
},
"keywords": [
"claude-code",
"website-clone",
"reverse-engineering",
"nextjs",
"ai",
"template",
"tailwindcss",
"shadcn-ui"
],
"engines": {
"node": ">=24"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"check": "npm run lint && npm run typecheck && npm run build"
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^1.6.0",
"next": "16.2.1",
"react": "19.2.4",
"react-dom": "19.2.4",
"shadcn": "^4.1.0",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^24",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.1",
"tailwindcss": "^4",
"typescript": "^5"
}
}