silvery 0.0.1

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 (3) hide show
  1. package/README.md +20 -0
  2. package/package.json +16 -0
  3. package/src/index.ts +1 -0
package/README.md ADDED
@@ -0,0 +1,20 @@
1
+ # silvery
2
+
3
+ Multi-target rendering framework for React — terminal, browser, and beyond.
4
+
5
+ **Coming soon.** See [silvery.dev](https://silvery.dev) for details.
6
+
7
+ ## Packages
8
+
9
+ - `silvery` — umbrella package (re-exports all `@silvery/*` packages)
10
+ - `@silvery/react` — core React reconciler and runtime
11
+ - `@silvery/term` — terminal rendering target
12
+ - `@silvery/ansi` — ANSI styling (chalk replacement)
13
+ - `@silvery/theme` — theming system
14
+ - `@silvery/ui` — component library
15
+ - `@silvery/test` — testing utilities
16
+ - `@silvery/tea` — TEA state machine store
17
+
18
+ ## License
19
+
20
+ MIT
package/package.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "silvery",
3
+ "version": "0.0.1",
4
+ "description": "Multi-target rendering framework for React — terminal, browser, and beyond",
5
+ "keywords": ["react", "tui", "terminal", "rendering", "ui", "ink", "chalk", "cli"],
6
+ "license": "MIT",
7
+ "author": "Bjørn Stabell <bjorn@stabell.org>",
8
+ "homepage": "https://silvery.dev",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "https://github.com/beorn/silvery.git"
12
+ },
13
+ "type": "module",
14
+ "main": "src/index.ts",
15
+ "files": ["src", "README.md"]
16
+ }
package/src/index.ts ADDED
@@ -0,0 +1 @@
1
+ export const VERSION = "0.0.1"