-
Notifications
You must be signed in to change notification settings - Fork 167
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.06 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.06 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
{
"name": "termui",
"version": "0.0.5",
"private": true,
"description": "A TypeScript-first framework for building beautiful, interactive terminal user interfaces",
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "turbo run build",
"test": "bun vitest run",
"test:watch": "bun vitest",
"typecheck": "turbo run typecheck",
"lint": "turbo run lint",
"bench": "bun packages/core/src/benchmark/render-loop.ts",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \".\""
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^25.2.3",
"tsup": "^8.3.0",
"turbo": "^2.9.12",
"typescript": "^5.7.0",
"vitest": "^2.1.0"
},
"packageManager": "bun@1.3.14",
"engines": {
"bun": ">=1.3.0",
"node": ">=18.0.0"
},
"homepage": "https://www.termui.io",
"repository": {
"type": "git",
"url": "https://github.com/Karanjot786/TermUI"
},
"license": "MIT",
"dependencies": {
"commander": "^15.0.0",
"dotenv": "^16.0.0"
}
}