๐Ÿ“ฆ aquaticcalf / kanban

๐Ÿ“„ package.json ยท 26 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26{
  "name": "kanban",
  "private": true,
  "type": "module",
  "module": "src/index.tsx",
  "scripts": {
    "dev": "bun run --watch app/index.tsx",
    "fix": "oxfmt && oxlint --fix && tsc --noEmit",
    "prepare": "husky"
  },
  "dependencies": {
    "@opentui/core": "^0.1.67",
    "@opentui/react": "^0.1.67",
    "react": "^19.2.3"
  },
  "devDependencies": {
    "@types/bun": "latest",
    "husky": "^9.1.7",
    "oxfmt": "^0.21.0",
    "oxlint": "^1.36.0"
  },
  "peerDependencies": {
    "typescript": "^5"
  }
}