framework
Version:
The (AI) Framework: turnkey, zero-config AI orchestration that wraps a coding-agent CLI (Claude Code) as a black box and takes you from an idea to a running app. Vite for AI.
81 lines (80 loc) • 2.61 kB
JSON
{
"name": "framework",
"version": "0.7.0",
"description": "The (AI) Framework: turnkey, zero-config AI orchestration that wraps a coding-agent CLI (Claude Code) as a black box and takes you from an idea to a running app. Vite for AI.",
"keywords": [
"ai",
"agent",
"claude-code",
"orchestration",
"framework",
"codegen",
"cli",
"turnkey"
],
"license": "MIT",
"homepage": "https://github.com/framework/the-framework/tree/main/packages/the-framework#readme",
"bugs": {
"url": "https://github.com/framework/the-framework/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/framework/the-framework",
"directory": "packages/the-framework"
},
"type": "module",
"engines": {
"node": ">=22.12.0"
},
"files": [
"dist"
],
"bin": {
"the-framework": "./dist/bin.js"
},
"scripts": {
"build": "node scripts/gen-prompts.mjs && tsc -p tsconfig.build.json && cd dashboard && vite build",
"preview": "pnpm build && node dist/bin.js",
"dev": "node scripts/gen-prompts.mjs && tsc -p tsconfig.build.json --watch",
"dev:dashboard": "cd dashboard && vite",
"dev:daemon": "cd dashboard && FRAMEWORK_DEV_DAEMON=1 vite",
"design:build": "tsx dashboard/design/build.mts",
"typecheck": "node scripts/gen-prompts.mjs && tsc --noEmit && tsc --noEmit -p dashboard/tsconfig.json",
"test": "node scripts/gen-prompts.mjs && tsc -p tsconfig.test.json && node scripts/run-tests.mjs && cd dashboard && vitest run",
"clean": "rm -rf dist dist-test src/prompts.generated.ts",
"gen:prompts": "node scripts/gen-prompts.mjs"
},
"dependencies": {
"@base-ui-components/react": "1.0.0-rc.0",
"@shadcn/react": "^0.2.1",
"@tiptap/core": "^2.10.0",
"@tiptap/pm": "^2.10.0",
"@tiptap/react": "^2.10.0",
"@tiptap/starter-kit": "^2.10.0",
"@tiptap/suggestion": "^2.10.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.469.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"tailwind-merge": "^2.6.0",
"tiptap-markdown": "^0.8.10",
"yaml": "^2.5.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.0.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^20.0.0",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^6.0.3",
"jsdom": "^29.1.1",
"tailwindcss": "^4.0.0",
"tsx": "^4.22.4",
"typescript": "^5.4.0",
"vite": "^8.0.0",
"vitest": "^4.1.10"
},
"author": "Suleiman Shahbari"
}