marz-ui 1.0.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 +288 -0
- package/dist/components/button/index.d.ts +14 -0
- package/dist/components/button/index.js +145 -0
- package/dist/components/input/index.d.ts +14 -0
- package/dist/components/input/index.js +148 -0
- package/dist/components/sidepanel/index.d.ts +14 -0
- package/dist/components/sidepanel/index.js +181 -0
- package/dist/index.d.ts +42 -0
- package/dist/index.js +10 -0
- package/dist/styles/style.css +1 -0
- package/package.json +121 -0
package/package.json
ADDED
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "marz-ui",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Marz UI - Framework-agnostic UI components and design system",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./dist/index.js",
|
|
12
|
+
"types": "./dist/index.d.ts"
|
|
13
|
+
},
|
|
14
|
+
"./styles": "./dist/styles/index.css",
|
|
15
|
+
"./styles/tokens": "./dist/styles/tokens.css",
|
|
16
|
+
"./styles/components": "./dist/styles/components.css",
|
|
17
|
+
"./button": {
|
|
18
|
+
"import": "./dist/components/button/index.js",
|
|
19
|
+
"types": "./dist/components/button/index.d.ts"
|
|
20
|
+
},
|
|
21
|
+
"./input": {
|
|
22
|
+
"import": "./dist/components/input/index.js",
|
|
23
|
+
"types": "./dist/components/input/index.d.ts"
|
|
24
|
+
},
|
|
25
|
+
"./sidepanel": {
|
|
26
|
+
"import": "./dist/components/sidepanel/index.js",
|
|
27
|
+
"types": "./dist/components/sidepanel/index.d.ts"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"files": [
|
|
31
|
+
"dist"
|
|
32
|
+
],
|
|
33
|
+
"scripts": {
|
|
34
|
+
"dev": "vite",
|
|
35
|
+
"build": "tsc && vite build",
|
|
36
|
+
"preview": "vite preview"
|
|
37
|
+
},
|
|
38
|
+
"keywords": [
|
|
39
|
+
"web-components",
|
|
40
|
+
"ui",
|
|
41
|
+
"design-system",
|
|
42
|
+
"framework-agnostic",
|
|
43
|
+
"components"
|
|
44
|
+
],
|
|
45
|
+
"author": "razvanmaftei",
|
|
46
|
+
"license": "MIT",
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"typescript": "^5.0.0",
|
|
49
|
+
"vite": "^4.5.0",
|
|
50
|
+
"vite-plugin-dts": "^3.7.0"
|
|
51
|
+
},
|
|
52
|
+
"dependencies": {
|
|
53
|
+
"brace-expansion": "^1.1.12",
|
|
54
|
+
"argparse": "^1.0.10",
|
|
55
|
+
"balanced-match": "^1.0.2",
|
|
56
|
+
"ajv": "^6.12.6",
|
|
57
|
+
"concat-map": "^0.0.1",
|
|
58
|
+
"de-indent": "^1.0.2",
|
|
59
|
+
"commander": "^9.5.0",
|
|
60
|
+
"debug": "^4.4.3",
|
|
61
|
+
"computeds": "^0.0.1",
|
|
62
|
+
"entities": "^4.5.0",
|
|
63
|
+
"fs-extra": "^7.0.1",
|
|
64
|
+
"estree-walker": "^2.0.2",
|
|
65
|
+
"fast-deep-equal": "^3.1.3",
|
|
66
|
+
"esbuild": "^0.18.20",
|
|
67
|
+
"fast-json-stable-stringify": "^2.1.0",
|
|
68
|
+
"has-flag": "^4.0.0",
|
|
69
|
+
"he": "^1.2.0",
|
|
70
|
+
"import-lazy": "^4.0.0",
|
|
71
|
+
"graceful-fs": "^4.2.11",
|
|
72
|
+
"json-schema-traverse": "^0.4.1",
|
|
73
|
+
"fsevents": "^2.3.3",
|
|
74
|
+
"kolorist": "^1.8.0",
|
|
75
|
+
"is-core-module": "^2.16.1",
|
|
76
|
+
"jju": "^1.4.0",
|
|
77
|
+
"lodash": "^4.17.21",
|
|
78
|
+
"lodash.get": "^4.4.2",
|
|
79
|
+
"jsonfile": "^4.0.0",
|
|
80
|
+
"minimatch": "^3.0.8",
|
|
81
|
+
"lodash.isequal": "^4.5.0",
|
|
82
|
+
"function-bind": "^1.1.2",
|
|
83
|
+
"ms": "^2.1.3",
|
|
84
|
+
"magic-string": "^0.30.21",
|
|
85
|
+
"muggle-string": "^0.3.1",
|
|
86
|
+
"path-parse": "^1.0.7",
|
|
87
|
+
"path-browserify": "^1.0.1",
|
|
88
|
+
"hasown": "^2.0.2",
|
|
89
|
+
"picocolors": "^1.1.1",
|
|
90
|
+
"postcss": "^8.5.6",
|
|
91
|
+
"nanoid": "^3.3.11",
|
|
92
|
+
"source-map": "^0.6.1",
|
|
93
|
+
"picomatch": "^4.0.3",
|
|
94
|
+
"semver": "^7.5.4",
|
|
95
|
+
"resolve": "^1.22.11",
|
|
96
|
+
"punycode": "^2.3.1",
|
|
97
|
+
"rollup": "^3.29.5",
|
|
98
|
+
"strip-json-comments": "^3.1.1",
|
|
99
|
+
"source-map-js": "^1.2.1",
|
|
100
|
+
"string-argv": "^0.3.2",
|
|
101
|
+
"sprintf-js": "^1.0.3",
|
|
102
|
+
"supports-color": "^8.1.1",
|
|
103
|
+
"universalify": "^0.1.2",
|
|
104
|
+
"supports-preserve-symlinks-flag": "^1.0.0",
|
|
105
|
+
"uri-js": "^4.4.1",
|
|
106
|
+
"lru-cache": "^6.0.0",
|
|
107
|
+
"vue-template-compiler": "^2.7.16",
|
|
108
|
+
"validator": "^13.15.23",
|
|
109
|
+
"vue-tsc": "^1.8.27",
|
|
110
|
+
"yallist": "^4.0.0",
|
|
111
|
+
"z-schema": "^5.0.5"
|
|
112
|
+
},
|
|
113
|
+
"repository": {
|
|
114
|
+
"type": "git",
|
|
115
|
+
"url": "git+https://github.com/RazvanMaftei9/marz-ui.git"
|
|
116
|
+
},
|
|
117
|
+
"bugs": {
|
|
118
|
+
"url": "https://github.com/RazvanMaftei9/marz-ui/issues"
|
|
119
|
+
},
|
|
120
|
+
"homepage": "https://github.com/RazvanMaftei9/marz-ui#readme"
|
|
121
|
+
}
|