@velicons/core 0.1.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 +9 -0
- package/package.json +21 -0
- package/src/registry.json +270540 -0
package/README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# @velicons/core
|
|
2
|
+
|
|
3
|
+
Framework-neutral icon data.
|
|
4
|
+
|
|
5
|
+
`src/registry.json` is generated from the configured icon sources and is the
|
|
6
|
+
canonical intermediate representation consumed by renderers and documentation.
|
|
7
|
+
|
|
8
|
+
It intentionally contains no React, Vue, Svelte, or other framework-specific
|
|
9
|
+
component names.
|
package/package.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@velicons/core",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Framework-neutral canonical icon registry for Velicons.",
|
|
5
|
+
"license": "UNLICENSED",
|
|
6
|
+
"private": false,
|
|
7
|
+
"type": "module",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/libravelabs/velicons-system.git"
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
"src/registry.json"
|
|
14
|
+
],
|
|
15
|
+
"exports": {
|
|
16
|
+
"./registry.json": "./src/registry.json"
|
|
17
|
+
},
|
|
18
|
+
"publishConfig": {
|
|
19
|
+
"access": "public"
|
|
20
|
+
}
|
|
21
|
+
}
|