@skygraph/styles 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.css +3 -0
  3. package/package.json +19 -0
package/README.md ADDED
@@ -0,0 +1,12 @@
1
+ # @skygraph/styles
2
+
3
+ > Placeholder package. **Do not install yet.**
4
+
5
+ `@skygraph/styles` is the framework-agnostic CSS for [SkyGraph](https://skygraph.ruslansinkevich.ru) — design tokens, themes, transitions, component stylesheets.
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.css ADDED
@@ -0,0 +1,3 @@
1
+ /* @skygraph/styles — placeholder. Real release pending.
2
+ * See https://skygraph.ruslansinkevich.ru
3
+ */
package/package.json ADDED
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "@skygraph/styles",
3
+ "version": "0.0.0-placeholder.0",
4
+ "description": "SkyGraph framework-agnostic CSS — tokens, themes, component stylesheets. Placeholder.",
5
+ "keywords": ["css", "design-tokens", "theme", "styles", "skygraph"],
6
+ "homepage": "https://skygraph.ruslansinkevich.ru",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/RuslanSinkevich/skygraph.git",
10
+ "directory": "packages/styles"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/RuslanSinkevich/skygraph/issues"
14
+ },
15
+ "author": "Ruslan Sinkevich",
16
+ "license": "MIT",
17
+ "main": "index.css",
18
+ "files": ["index.css", "README.md"]
19
+ }