Files
NianAIGC/package.json
2026-05-29 12:32:02 +08:00

49 lines
1.3 KiB
JSON

{
"name": "zhinian-creation-assistant",
"version": "0.1.0",
"private": true,
"type": "module",
"productName": "智念AIGC平台",
"description": "Minimal Web MVP for Jimeng image generation, image editing, upscaling, and video generation.",
"scripts": {
"dev": "next dev",
"build": "next build",
"prestart": "next build",
"start": "next start --hostname 127.0.0.1 --port 3000",
"start:server": "next start --hostname 0.0.0.0 --port 3000",
"worker": "node scripts/worker.mjs",
"worker:once": "node scripts/worker.mjs --once",
"health": "node scripts/health-check.mjs",
"info": "node scripts/print-app-info.mjs",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@supabase/supabase-js": "^2.49.4",
"ali-oss": "^6.23.0",
"clsx": "^2.1.1",
"graceful-fs": "^4.2.11",
"gsap": "^3.15.0",
"lucide-react": "^0.468.0",
"next": "^15.1.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/node": "^22.10.5",
"@types/react": "^19.0.4",
"@types/react-dom": "^19.0.2",
"typescript": "^5.7.2",
"vitest": "^4.1.7"
},
"overrides": {
"postcss": "^8.5.10"
},
"engines": {
"node": ">=20"
}
}