about summary refs log blame commit diff stats
path: root/ts/bun/package.json
blob: 627f91ff029faacd9adfc7a220e7fb9e61ad4be0 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
 


                                         





                          


                              


                                                           

   
{
  "name": "life",
  "description": "Conway's Game of Life",
  "module": "life.ts",
  "type": "module",
  "devDependencies": {
    "@types/bun": "latest"
  },
  "peerDependencies": {
    "typescript": "^5.0.0"
  },
  "scripts": {
    "run": "bun run index.ts",
    "test": "bun test",
    "build": "bun build index.ts --compile --outfile life",
    "clean": "rm -rf life"
  }
}