Files
bim_engine/demo-next/package.json

25 lines
714 B
JSON
Raw Normal View History

2026-04-21 15:07:49 +08:00
{
"name": "iflow-engine-next-demo",
"version": "1.0.0",
"description": "iFlow Engine Next.js + React Demo",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"copy-sdk": "mkdir -p public/lib && cp ../dist/iflow-engine.umd.js public/lib/ && cp ../dist/iflow-engine.umd.js.map public/lib/ && cp ../dist/iflow-engine.es.js public/lib/"
},
"dependencies": {
"iflow-engine": "2.7.2",
"next": "^15.3.0",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@types/node": "^22.14.0",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"typescript": "^5.9.3"
}
}