Files
chambai/package.json
T
tiennm99 87642bdea9 refactor: convert TypeScript to JavaScript with JSDoc type annotations
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.
2026-04-12 23:35:33 +07:00

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"
}
}