litegui.ts 1.0.2 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +17 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -11,6 +11,23 @@ you're looking for. On the other hand, any advanced UI will need a lot of coding
11
11
 
12
12
  ![Example](imgs/litegui.PNG "LiteGUI Example")
13
13
 
14
+ Installation
15
+ -----------
16
+
17
+ ### npm
18
+
19
+ ```bash
20
+ npm install litegui.ts
21
+ ```
22
+
23
+ ### CDN (GitHub Pages)
24
+
25
+ You can also load the library directly from the GitHub Pages CDN — no install required:
26
+ ```html
27
+ <link type="text/css" rel="stylesheet" href="https://alvaroestradadev.github.io/litegui.ts/litegui.css">
28
+ <script type="application/javascript" src="https://alvaroestradadev.github.io/litegui.ts/litegui.js"></script>
29
+ ```
30
+
14
31
  Creating a UI
15
32
  -----------
16
33
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "litegui.ts",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "A TypeScript library to create webapps with a desktop look-alike user interface",
5
5
  "main": "dist/litegui.js",
6
6
  "types": "dist/litegui.d.ts",