-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.2 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
53
54
55
56
57
{
"name": "tuilder",
"version": "0.2.2",
"description": "Interactive TUI course that teaches non-tech people to use the terminal, Git, and AI coding agents",
"type": "module",
"homepage": "https://ohernandezdev.github.io/tuilder/",
"repository": {
"type": "git",
"url": "https://github.com/ohernandezdev/tuilder.git"
},
"author": "Omar Hernandez (https://github.com/ohernandezdev)",
"bin": {
"tuilder": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "npx tsx --watch src/index.tsx",
"start": "node dist/index.js",
"test": "vitest"
},
"keywords": [
"tui",
"cli",
"terminal",
"education",
"learn",
"git",
"ai-agents",
"claude-code",
"ink",
"interactive",
"course",
"beginner"
],
"license": "MIT",
"files": [
"dist"
],
"dependencies": {
"chalk": "^5.4.1",
"ink": "^5.2.0",
"ink-select-input": "^6.0.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"meow": "^13.2.0",
"react": "^18.3.1"
},
"devDependencies": {
"@types/node": "^25.5.2",
"@types/react": "^18.3.18",
"typescript": "^5.7.3",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=18"
}
}