@sellgar/kit 0.0.1
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/dist/index.es.js +9427 -0
- package/dist/index.umd.js +96 -0
- package/dist/kit.css +1 -0
- package/package.json +32 -0
package/package.json
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@sellgar/kit",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Sellgar storybook",
|
|
5
|
+
"main": "dist/index.es.js",
|
|
6
|
+
"module": "dist/index.esm.js",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/pyatakovvg/sellgar.ui.kit.git"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"dist/*"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"dev": "vite",
|
|
16
|
+
"build": "vite build",
|
|
17
|
+
"login": "npm login",
|
|
18
|
+
"publish": "npm publish --access public"
|
|
19
|
+
},
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"@library/kit": "0.0.1"
|
|
22
|
+
},
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"vite": "6.2.0"
|
|
25
|
+
},
|
|
26
|
+
"bugs": {
|
|
27
|
+
"url": "https://github.com/pyatakovvg/sellgar.ui.kit/issues"
|
|
28
|
+
},
|
|
29
|
+
"homepage": "https://github.com/pyatakovvg/sellgar.ui.kit#readme",
|
|
30
|
+
"author": "",
|
|
31
|
+
"license": "ISC"
|
|
32
|
+
}
|