forked from Karanjot786/TermUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 897 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 897 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
34
35
36
37
38
39
40
41
42
43
{
"name": "create-termui-app",
"homepage": "https://www.termui.io/docs/getting-started/installation",
"repository": {
"type": "git",
"url": "https://github.com/Karanjot786/TermUI"
},
"version": "0.1.7",
"description": "Scaffold a new TermUI project with templates, themes, and dev server",
"type": "module",
"bin": {
"create-termui-app": "./dist/index.js"
},
"main": "./dist/index.js",
"files": [
"dist",
"templates"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run --config ../../vitest.config.ts"
},
"dependencies": {
"@termuijs/tss": "workspace:*"
},
"devDependencies": {
"tsup": "^8.0.0",
"typescript": "^5.3.0"
},
"keywords": [
"terminal",
"tui",
"cli",
"scaffold",
"create-app",
"generator"
],
"engines": {
"bun": ">=1.3.0"
},
"license": "MIT"
}