{
  "name": "ts-project",
  "version": "1.0.0",
  "type": "module",
  "scripts": {
    "dev": "bun run src/index.ts",
    "build": "bun build src/index.ts --outdir=dist --target=node",
    "start": "bun run dist/index.js",
    "lint": "biome lint .",
    "format": "biome format . --write",
    "check": "biome check . --write",
    "type-check": "tsc --noEmit"
  },
  "devDependencies": {
    "@biomejs/biome": "^1.8.3",
    "@types/node": "^20.14.0",
    "@types/papaparse": "^5.3.14",
    "typescript": "^5.5.0"
  },
  "dependencies": {
    "papaparse": "^5.4.1"
  }
}