create-termui-app 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -0
- package/package.json +7 -2
package/README.md
CHANGED
|
@@ -50,6 +50,11 @@ my-app/
|
|
|
50
50
|
|
|
51
51
|
Everything is TypeScript, and the dev server is preconfigured in the `dev` script.
|
|
52
52
|
|
|
53
|
+
|
|
54
|
+
## Documentation
|
|
55
|
+
|
|
56
|
+
Full docs at [www.termui.io/docs/getting-started/installation](https://www.termui.io/docs/getting-started/installation).
|
|
57
|
+
|
|
53
58
|
## License
|
|
54
59
|
|
|
55
60
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-termui-app",
|
|
3
|
-
"
|
|
3
|
+
"homepage": "https://www.termui.io/docs/getting-started/installation",
|
|
4
|
+
"repository": {
|
|
5
|
+
"type": "git",
|
|
6
|
+
"url": "https://github.com/Karanjot786/TermUI"
|
|
7
|
+
},
|
|
8
|
+
"version": "0.1.3",
|
|
4
9
|
"description": "Scaffold a new TermUI project with templates, themes, and dev server",
|
|
5
10
|
"type": "module",
|
|
6
11
|
"bin": {
|
|
@@ -11,7 +16,7 @@
|
|
|
11
16
|
"dist"
|
|
12
17
|
],
|
|
13
18
|
"dependencies": {
|
|
14
|
-
"@termuijs/tss": "0.1.
|
|
19
|
+
"@termuijs/tss": "0.1.3"
|
|
15
20
|
},
|
|
16
21
|
"devDependencies": {
|
|
17
22
|
"tsup": "^8.0.0",
|