@skygraph/vue 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.
Files changed (3) hide show
  1. package/README.md +12 -0
  2. package/index.js +3 -0
  3. package/package.json +19 -0
package/README.md ADDED
@@ -0,0 +1,12 @@
1
+ # @skygraph/vue
2
+
3
+ > Placeholder package. **Do not install yet.**
4
+
5
+ `@skygraph/vue` is the Vue 3 adapter for [SkyGraph](https://skygraph.ruslansinkevich.ru) — composables 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 Vue demo: <https://skygraph.ruslansinkevich.ru/vue/>
10
+ - Repository: <https://github.com/RuslanSinkevich/skygraph>
11
+
12
+ MIT © Ruslan Sinkevich
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ // @skygraph/vue — placeholder. Real release pending.
2
+ // See https://skygraph.ruslansinkevich.ru/vue/
3
+ module.exports = { name: '@skygraph/vue', status: 'placeholder' };
package/package.json ADDED
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "@skygraph/vue",
3
+ "version": "0.0.0-placeholder.0",
4
+ "description": "SkyGraph Vue 3 adapter — composables and components built on @skygraph/core. Placeholder.",
5
+ "keywords": ["vue", "vue3", "ui", "headless", "composables", "skygraph"],
6
+ "homepage": "https://skygraph.ruslansinkevich.ru/vue/",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/RuslanSinkevich/skygraph.git",
10
+ "directory": "packages/vue"
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
+ }