-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.24 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "verbum",
"version": "0.1.0",
"description": "Read the Bible from your terminal — TUI + CLI in one binary, built with Bun, TypeScript, OpenTUI, and Hexagonal Architecture.",
"keywords": [
"bible",
"bible-reader",
"bible-cli",
"bible-tui",
"scripture",
"verse",
"tui",
"cli",
"terminal",
"terminal-ui",
"bun",
"typescript",
"react",
"opentui",
"hexagonal-architecture",
"clean-architecture"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ivanmaierg/verbum.git"
},
"homepage": "https://github.com/ivanmaierg/verbum#readme",
"bugs": {
"url": "https://github.com/ivanmaierg/verbum/issues"
},
"type": "module",
"scripts": {
"test": "bun test",
"build": "bun build --compile src/index.tsx --outfile verbum",
"dev": "bun run src/index.tsx",
"generate:banner": "bun run scripts/generate-banner.ts"
},
"dependencies": {
"@opentui/core": "^0.2.6",
"@opentui/react": "^0.2.6",
"react": "^19.2.6",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/bun": "^1.3.13",
"@types/figlet": "^1.7.0",
"@types/node": "^25.7.0",
"@types/react": "^19.2.14",
"figlet": "^1.11.0"
}
}