launchframe 0.2.6 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +1 -1
- package/README.md +76 -102
- package/launchframe.config.json +14 -0
- package/package.json +54 -52
- package/bin/launchframe.mjs +0 -315
- package/template/README.md +0 -121
- package/template/package-lock.json +0 -8795
- package/template/package.json +0 -63
- /package/{template/.aider.conf.yml → .aider.conf.yml} +0 -0
- /package/{template/.amazonq → .amazonq}/cli-agents/clone-website.json +0 -0
- /package/{template/.amazonq → .amazonq}/rules/project.md +0 -0
- /package/{template/.augment → .augment}/commands/clone-website.md +0 -0
- /package/{template/.claude → .claude}/skills/clone-website/SKILL.md +0 -0
- /package/{template/.claude → .claude}/skills/marketing-social-proof-motion/SKILL.md +0 -0
- /package/{template/.clinerules → .clinerules} +0 -0
- /package/{template/.codex → .codex}/skills/clone-website/SKILL.md +0 -0
- /package/{template/.continue → .continue}/commands/clone-website.md +0 -0
- /package/{template/.continue → .continue}/rules/project.md +0 -0
- /package/{template/.cursor → .cursor}/commands/clone-website.md +0 -0
- /package/{template/.cursor → .cursor}/commands/marketing-social-proof-motion.md +0 -0
- /package/{template/.cursor → .cursor}/rules/project.mdc +0 -0
- /package/{template/.dockerignore → .dockerignore} +0 -0
- /package/{template/.gemini → .gemini}/commands/clone-website.toml +0 -0
- /package/{template/.gitattributes → .gitattributes} +0 -0
- /package/{template/.github → .github}/ISSUE_TEMPLATE/bug_report.yml +0 -0
- /package/{template/.github → .github}/ISSUE_TEMPLATE/config.yml +0 -0
- /package/{template/.github → .github}/ISSUE_TEMPLATE/feature_request.yml +0 -0
- /package/{template/.github → .github}/PULL_REQUEST_TEMPLATE.md +0 -0
- /package/{template/.github → .github}/copilot-instructions.md +0 -0
- /package/{template/.github → .github}/copilot-setup-steps.yml +0 -0
- /package/{template/.github → .github}/skills/clone-website/SKILL.md +0 -0
- /package/{template/.github → .github}/workflows/ci.yml +0 -0
- /package/{template/.nvmrc → .nvmrc} +0 -0
- /package/{template/.opencode → .opencode}/commands/clone-website.md +0 -0
- /package/{template/.windsurf → .windsurf}/workflows/clone-website.md +0 -0
- /package/{template/.windsurfrules → .windsurfrules} +0 -0
- /package/{template/AGENTS.md → AGENTS.md} +0 -0
- /package/{template/CHANGELOG.md → CHANGELOG.md} +0 -0
- /package/{template/CLAUDE.md → CLAUDE.md} +0 -0
- /package/{template/Dockerfile → Dockerfile} +0 -0
- /package/{template/Dockerfile.dev → Dockerfile.dev} +0 -0
- /package/{template/GEMINI.md → GEMINI.md} +0 -0
- /package/{template/START_HERE.md → START_HERE.md} +0 -0
- /package/{template/components.json → components.json} +0 -0
- /package/{template/docker-compose.yml → docker-compose.yml} +0 -0
- /package/{template/docs → docs}/design-references/.gitkeep +0 -0
- /package/{template/docs → docs}/design-references/comparison.png +0 -0
- /package/{template/docs → docs}/design-references/playwright-example.com-1440px.png +0 -0
- /package/{template/docs → docs}/design-references/playwright-example.com-390px.png +0 -0
- /package/{template/docs → docs}/research/INSPECTION_GUIDE.md +0 -0
- /package/{template/eslint.config.mjs → eslint.config.mjs} +0 -0
- /package/{template/next.config.ts → next.config.ts} +0 -0
- /package/{template/postcss.config.mjs → postcss.config.mjs} +0 -0
- /package/{template/public → public}/images/.gitkeep +0 -0
- /package/{template/public → public}/seo/.gitkeep +0 -0
- /package/{template/public → public}/videos/.gitkeep +0 -0
- /package/{template/scripts → scripts}/.gitkeep +0 -0
- /package/{template/scripts → scripts}/recon-playwright.mjs +0 -0
- /package/{template/scripts → scripts}/sync-agent-rules.sh +0 -0
- /package/{template/scripts → scripts}/sync-skills.mjs +0 -0
- /package/{template/src → src}/app/favicon.ico +0 -0
- /package/{template/src → src}/app/globals.css +0 -0
- /package/{template/src → src}/app/layout.tsx +0 -0
- /package/{template/src → src}/app/page.tsx +0 -0
- /package/{template/src → src}/components/marketing/scribewise-landing.tsx +0 -0
- /package/{template/src → src}/components/ui/button.tsx +0 -0
- /package/{template/src → src}/hooks/.gitkeep +0 -0
- /package/{template/src → src}/lib/utils.ts +0 -0
- /package/{template/src → src}/types/.gitkeep +0 -0
- /package/{template/tsconfig.json → tsconfig.json} +0 -0
package/template/package.json
DELETED
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "ai-website-clone-template",
|
|
3
|
-
"version": "0.3.1",
|
|
4
|
-
"private": true,
|
|
5
|
-
"description": "Clone any website into a clean, modern Next.js codebase using AI coding agents",
|
|
6
|
-
"author": "JCodesMore",
|
|
7
|
-
"license": "MIT",
|
|
8
|
-
"repository": {
|
|
9
|
-
"type": "git",
|
|
10
|
-
"url": "https://github.com/JCodesMore/ai-website-cloner-template.git"
|
|
11
|
-
},
|
|
12
|
-
"homepage": "https://github.com/JCodesMore/ai-website-cloner-template",
|
|
13
|
-
"bugs": {
|
|
14
|
-
"url": "https://github.com/JCodesMore/ai-website-cloner-template/issues"
|
|
15
|
-
},
|
|
16
|
-
"keywords": [
|
|
17
|
-
"claude-code",
|
|
18
|
-
"website-clone",
|
|
19
|
-
"reverse-engineering",
|
|
20
|
-
"nextjs",
|
|
21
|
-
"ai",
|
|
22
|
-
"template",
|
|
23
|
-
"tailwindcss",
|
|
24
|
-
"shadcn-ui"
|
|
25
|
-
],
|
|
26
|
-
"engines": {
|
|
27
|
-
"node": ">=24"
|
|
28
|
-
},
|
|
29
|
-
"scripts": {
|
|
30
|
-
"dev": "next dev",
|
|
31
|
-
"build": "next build",
|
|
32
|
-
"start": "next start",
|
|
33
|
-
"lint": "eslint",
|
|
34
|
-
"typecheck": "tsc --noEmit",
|
|
35
|
-
"check": "npm run lint && npm run typecheck && npm run build",
|
|
36
|
-
"recon": "node scripts/recon-playwright.mjs",
|
|
37
|
-
"recon:headed": "node scripts/recon-playwright.mjs --headed"
|
|
38
|
-
},
|
|
39
|
-
"dependencies": {
|
|
40
|
-
"@base-ui/react": "^1.3.0",
|
|
41
|
-
"class-variance-authority": "^0.7.1",
|
|
42
|
-
"clsx": "^2.1.1",
|
|
43
|
-
"framer-motion": "^12.4.0",
|
|
44
|
-
"lucide-react": "^1.6.0",
|
|
45
|
-
"next": "16.2.1",
|
|
46
|
-
"react": "19.2.4",
|
|
47
|
-
"react-dom": "19.2.4",
|
|
48
|
-
"shadcn": "^4.1.0",
|
|
49
|
-
"tailwind-merge": "^3.5.0",
|
|
50
|
-
"tw-animate-css": "^1.4.0"
|
|
51
|
-
},
|
|
52
|
-
"devDependencies": {
|
|
53
|
-
"@tailwindcss/postcss": "^4",
|
|
54
|
-
"@types/node": "^24",
|
|
55
|
-
"@types/react": "^19",
|
|
56
|
-
"@types/react-dom": "^19",
|
|
57
|
-
"eslint": "^9",
|
|
58
|
-
"eslint-config-next": "16.2.1",
|
|
59
|
-
"playwright": "^1.49.1",
|
|
60
|
-
"tailwindcss": "^4",
|
|
61
|
-
"typescript": "^5"
|
|
62
|
-
}
|
|
63
|
-
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|