Files
tiennm99 5c91ac96f9 fix(lint): pin eslint ^9 for eslint-config-next@16 compat; replace removed next lint (#18)
- Downgrade eslint ^10 → ^9 (eslint-config-next@16 requires eslint >=9)
- Replace `next lint` script with `eslint .` (next lint removed in Next 16)
- Rewrite eslint.config.mjs to use native flat config API (defineConfig +
  eslint-config-next/core-web-vitals direct import) instead of FlatCompat
  bridge which triggers a circular-structure JSON crash with eslint-config-next@16
- Remove @eslint/eslintrc devDep (no longer needed with native flat config)
- Fix pnpm-workspace.yaml allowBuilds placeholders → true
2026-05-23 23:58:33 +07:00

29 lines
602 B
JSON

{
"name": "chambai",
"version": "0.1.0",
"packageManager": "pnpm@11.1.1",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint ."
},
"dependencies": {
"next": "16.2.6",
"opencv-ts": "^1.3.6",
"papaparse": "^5.5.3",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"eslint": "^9",
"eslint-config-next": "16.2.6",
"tailwindcss": "^4"
},
"pnpm": {
"ignoredBuiltDependencies": ["sharp", "unrs-resolver"]
}
}