@semos-labs/glyph 0.1.74 → 0.1.75

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.
Files changed (2) hide show
  1. package/README.md +30 -4
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -50,22 +50,48 @@ Build real terminal applications with React. Glyph provides a full component mod
50
50
 
51
51
  ---
52
52
 
53
- ## Installation
53
+ ## Quick Start
54
+
55
+ The fastest way to get started — scaffold a new project:
54
56
 
55
57
  ```bash
58
+ # bun
59
+ bun create @semos-labs/glyph my-app
60
+
56
61
  # npm
57
- npm install @semos-labs/glyph react
62
+ npm create @semos-labs/glyph my-app
58
63
 
59
64
  # pnpm
60
- pnpm add @semos-labs/glyph react
65
+ pnpm create @semos-labs/glyph my-app
61
66
 
67
+ # yarn
68
+ yarn create @semos-labs/glyph my-app
69
+ ```
70
+
71
+ Then:
72
+
73
+ ```bash
74
+ cd my-app
75
+ bun install
76
+ bun dev
77
+ ```
78
+
79
+ ### Manual Installation
80
+
81
+ ```bash
62
82
  # bun
63
83
  bun add @semos-labs/glyph react
84
+
85
+ # npm
86
+ npm install @semos-labs/glyph react
87
+
88
+ # pnpm
89
+ pnpm add @semos-labs/glyph react
64
90
  ```
65
91
 
66
92
  ---
67
93
 
68
- ## Quick Start
94
+ ## Hello World
69
95
 
70
96
  ```tsx
71
97
  import React from "react";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@semos-labs/glyph",
3
- "version": "0.1.74",
3
+ "version": "0.1.75",
4
4
  "description": "A React renderer for terminal UIs with flexbox layout",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -60,10 +60,10 @@
60
60
  "license": "MIT",
61
61
  "repository": {
62
62
  "type": "git",
63
- "url": "git+https://github.com/nick-skriabin/glyph.git"
63
+ "url": "git+https://github.com/semos-labs/glyph.git"
64
64
  },
65
65
  "bugs": {
66
- "url": "https://github.com/nick-skriabin/glyph/issues"
66
+ "url": "https://github.com/semos-labs/glyph/issues"
67
67
  },
68
- "homepage": "https://github.com/nick-skriabin/glyph#readme"
68
+ "homepage": "https://github.com/semos-labs/glyph#readme"
69
69
  }