-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 765 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 765 Bytes
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
27
28
29
30
31
32
33
{
"name": "lazytodo",
"version": "1.0.0",
"description": "Fast and beautiful vim-centric TUI for todo.txt",
"module": "index.ts",
"type": "module",
"bin": {
"lazytodo": "./index.ts"
},
"scripts": {
"dev": "bun run index.ts",
"build": "bun build index.ts --compile --target=bun --outfile lazytodo",
"test": "bun test"
},
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^19.2.7",
"zustand": "^5.0.9"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"@opentui/core": "^0.1.60",
"@opentui/react": "^0.1.60",
"chalk": "^5.6.2",
"cli-table3": "^0.6.5",
"commander": "^14.0.2",
"react": "^19.2.1",
"toml": "^3.0.0"
}
}