Wan2.1/wan-pwa/package.json
Claude f21ab74e38
chore: add configuration files for monorepo setup
- Add root package.json and turbo.json
- Add Next.js config files
- Add FastAPI environment example
- Add PWA manifest
- Add ESLint and Prettier config

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-24 14:19:02 +00:00

33 lines
830 B
JSON

{
"name": "wan-pwa",
"version": "1.0.0",
"private": true,
"description": "Wan2.1 PWA - AI Video Generation Platform",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"start": "turbo run start",
"lint": "turbo run lint",
"test": "turbo run test",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,md}\"",
"db:migrate": "cd packages/db && npm run migrate",
"db:seed": "cd packages/db && npm run seed"
},
"devDependencies": {
"@turbo/gen": "^2.3.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"turbo": "^2.3.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"packageManager": "npm@10.2.3"
}