@skygraph/core 0.0.0-placeholder.0
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 +12 -0
- package/index.js +3 -0
- package/package.json +19 -0
package/README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# @skygraph/core
|
|
2
|
+
|
|
3
|
+
> Placeholder package. **Do not install yet.**
|
|
4
|
+
|
|
5
|
+
`@skygraph/core` is the reactive runtime for [SkyGraph](https://skygraph.ruslansinkevich.ru) — a multi-framework UI library.
|
|
6
|
+
|
|
7
|
+
This release is a name-reservation stub (`0.0.0-placeholder.0`, dist-tag `placeholder`). The first usable version will be published under the `latest` tag.
|
|
8
|
+
|
|
9
|
+
- Live demos: <https://skygraph.ruslansinkevich.ru>
|
|
10
|
+
- Repository: <https://github.com/RuslanSinkevich/skygraph>
|
|
11
|
+
|
|
12
|
+
MIT © Ruslan Sinkevich
|
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@skygraph/core",
|
|
3
|
+
"version": "0.0.0-placeholder.0",
|
|
4
|
+
"description": "SkyGraph reactive runtime — state graph engine for UI. Placeholder; first stable release pending.",
|
|
5
|
+
"keywords": ["ui", "headless", "state-management", "reactive", "skygraph"],
|
|
6
|
+
"homepage": "https://skygraph.ruslansinkevich.ru",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/RuslanSinkevich/skygraph.git",
|
|
10
|
+
"directory": "packages/core"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/RuslanSinkevich/skygraph/issues"
|
|
14
|
+
},
|
|
15
|
+
"author": "Ruslan Sinkevich",
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"main": "index.js",
|
|
18
|
+
"files": ["index.js", "README.md"]
|
|
19
|
+
}
|