hakoniwa-term 0.0.1 → 0.0.2

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 +3 -0
  2. package/package.json +14 -4
package/README.md CHANGED
@@ -8,3 +8,6 @@ Originally it refers to a small, self‑contained miniature garden or landscape
8
8
 
9
9
  ## screenshot
10
10
  ![screenshot](resources/screenshot_hakoniwa_term.png)
11
+
12
+ ## sample
13
+ codesandbox: https://codesandbox.io/p/sandbox/my9kn2
package/package.json CHANGED
@@ -1,7 +1,13 @@
1
1
  {
2
2
  "name": "hakoniwa-term",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "A robust, pluggable retro terminal engine for React, powered by CSS Modules and Async Generators.",
5
+ "author": "koji <baxin1919@gmail.com>",
6
+ "homepage": "https://github.com/koji/hakoniwa-term",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/koji/hakoniwa-term.git"
10
+ },
5
11
  "main": "./dist/index.cjs",
6
12
  "module": "./dist/index.js",
7
13
  "types": "./dist/index.d.ts",
@@ -38,8 +44,12 @@
38
44
  "terminal",
39
45
  "cli-ui",
40
46
  "css-modules",
41
- "async-generator"
47
+ "async-generator",
48
+ "typescript",
49
+ "vite"
42
50
  ],
43
- "author": "koji",
44
- "license": "MIT"
51
+ "license": "MIT",
52
+ "publishConfig": {
53
+ "access": "public"
54
+ }
45
55
  }