mirror of
https://github.com/tiennm99/chambai.git
synced 2026-07-30 00:20:14 +00:00
Remove TypeScript from the project and convert all .ts/.tsx files to .js/.jsx. Add JSDoc @typedef and @param annotations to all lib functions for type checking via jsconfig.json checkJs. Delete tsconfig.json and src/types/ directory, replace with src/lib/types.js JSDoc definitions.
26 lines
522 B
JSON
26 lines
522 B
JSON
{
|
|
"name": "chambai",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev --turbopack",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint"
|
|
},
|
|
"dependencies": {
|
|
"next": "15.3.5",
|
|
"opencv-ts": "^1.3.6",
|
|
"papaparse": "^5.5.3",
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/eslintrc": "^3",
|
|
"@tailwindcss/postcss": "^4",
|
|
"eslint": "^9",
|
|
"eslint-config-next": "15.3.5",
|
|
"tailwindcss": "^4"
|
|
}
|
|
}
|