@skygraph/react 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/react
|
|
2
|
+
|
|
3
|
+
> Placeholder package. **Do not install yet.**
|
|
4
|
+
|
|
5
|
+
`@skygraph/react` is the React adapter for [SkyGraph](https://skygraph.ruslansinkevich.ru) — hooks and components built on `@skygraph/core`.
|
|
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 React demo: <https://skygraph.ruslansinkevich.ru/react/>
|
|
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/react",
|
|
3
|
+
"version": "0.0.0-placeholder.0",
|
|
4
|
+
"description": "SkyGraph React adapter — hooks and components built on @skygraph/core. Placeholder.",
|
|
5
|
+
"keywords": ["react", "ui", "headless", "hooks", "skygraph"],
|
|
6
|
+
"homepage": "https://skygraph.ruslansinkevich.ru/react/",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/RuslanSinkevich/skygraph.git",
|
|
10
|
+
"directory": "packages/react"
|
|
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
|
+
}
|