package.json 290 B

1234567891011
  1. {
  2. "devDependencies": {
  3. "esbuild": "~0.20",
  4. "typescript": "~5"
  5. },
  6. "scripts": {
  7. "dev": "npm run check && npm build",
  8. "check": "tsc index.ts",
  9. "build": "esbuild index.ts --bundle --platform=browser --tsconfig=tsconfig.json --analyze=verbose --outfile=index.js"
  10. }
  11. }