@umami/react-zen 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/LICENSE +21 -0
- package/README.md +28 -0
- package/dist/index.css +1882 -0
- package/dist/index.d.ts +623 -0
- package/dist/index.js +26482 -0
- package/dist/index.mjs +26476 -0
- package/package.json +125 -0
package/package.json
ADDED
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@umami/react-zen",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "React components built by Umami.",
|
|
5
|
+
"author": "Umami <hello@umami.is>",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"homepage": "https://umami.is/zen",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/umami-software/react-zen.git"
|
|
11
|
+
},
|
|
12
|
+
"main": "dist/index.js",
|
|
13
|
+
"module": "dist/index.mjs",
|
|
14
|
+
"types": "dist/index.d.ts",
|
|
15
|
+
"files": [
|
|
16
|
+
"dist"
|
|
17
|
+
],
|
|
18
|
+
"publishConfig": {
|
|
19
|
+
"access": "public"
|
|
20
|
+
},
|
|
21
|
+
"scripts": {
|
|
22
|
+
"dev": "next dev -p 9000",
|
|
23
|
+
"build": "next build",
|
|
24
|
+
"start": "next start",
|
|
25
|
+
"lint": "next lint",
|
|
26
|
+
"dts": "tsc -p tsconfig.build.json",
|
|
27
|
+
"build-components": "node build.mjs",
|
|
28
|
+
"bundle": "npm-run-all dts build-components"
|
|
29
|
+
},
|
|
30
|
+
"lint-staged": {
|
|
31
|
+
"**/*.{js,jsx,ts,tsx}": [
|
|
32
|
+
"prettier --write",
|
|
33
|
+
"eslint"
|
|
34
|
+
],
|
|
35
|
+
"**/*.css": [
|
|
36
|
+
"stylelint --fix",
|
|
37
|
+
"prettier --write"
|
|
38
|
+
],
|
|
39
|
+
"**/*.json": [
|
|
40
|
+
"prettier --write"
|
|
41
|
+
]
|
|
42
|
+
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"@fontsource/jetbrains-mono": "^5.0.18",
|
|
45
|
+
"@mdx-js/loader": "^3.0.0",
|
|
46
|
+
"@mdx-js/react": "^3.0.0",
|
|
47
|
+
"@next/mdx": "^14.1.0",
|
|
48
|
+
"@radix-ui/colors": "^3.0.0",
|
|
49
|
+
"@radix-ui/react-accessible-icon": "^1.1.0",
|
|
50
|
+
"@radix-ui/react-accordion": "^1.1.2",
|
|
51
|
+
"@radix-ui/react-alert-dialog": "^1.0.5",
|
|
52
|
+
"@radix-ui/react-aspect-ratio": "^1.0.3",
|
|
53
|
+
"@radix-ui/react-avatar": "^1.0.4",
|
|
54
|
+
"@radix-ui/react-checkbox": "^1.1.1",
|
|
55
|
+
"@radix-ui/react-collapsible": "^1.0.3",
|
|
56
|
+
"@radix-ui/react-context-menu": "^2.1.5",
|
|
57
|
+
"@radix-ui/react-dialog": "^1.0.5",
|
|
58
|
+
"@radix-ui/react-direction": "^1.0.1",
|
|
59
|
+
"@radix-ui/react-dropdown-menu": "^2.0.6",
|
|
60
|
+
"@radix-ui/react-hover-card": "^1.0.7",
|
|
61
|
+
"@radix-ui/react-label": "^2.0.2",
|
|
62
|
+
"@radix-ui/react-menubar": "^1.0.4",
|
|
63
|
+
"@radix-ui/react-navigation-menu": "^1.1.4",
|
|
64
|
+
"@radix-ui/react-popover": "^1.0.7",
|
|
65
|
+
"@radix-ui/react-portal": "^1.0.4",
|
|
66
|
+
"@radix-ui/react-progress": "^1.0.3",
|
|
67
|
+
"@radix-ui/react-radio-group": "^1.1.3",
|
|
68
|
+
"@radix-ui/react-scroll-area": "^1.0.5",
|
|
69
|
+
"@radix-ui/react-select": "^2.1.1",
|
|
70
|
+
"@radix-ui/react-separator": "^1.0.3",
|
|
71
|
+
"@radix-ui/react-slider": "^1.1.2",
|
|
72
|
+
"@radix-ui/react-slot": "^1.0.2",
|
|
73
|
+
"@radix-ui/react-switch": "^1.0.3",
|
|
74
|
+
"@radix-ui/react-tabs": "^1.0.4",
|
|
75
|
+
"@radix-ui/react-toast": "^1.2.1",
|
|
76
|
+
"@radix-ui/react-toggle": "^1.0.3",
|
|
77
|
+
"@radix-ui/react-toggle-group": "^1.0.4",
|
|
78
|
+
"@radix-ui/react-toolbar": "^1.0.4",
|
|
79
|
+
"@radix-ui/react-tooltip": "^1.0.7",
|
|
80
|
+
"@radix-ui/react-visually-hidden": "^1.0.3",
|
|
81
|
+
"classnames": "^2.5.1",
|
|
82
|
+
"glob": "^10.3.10",
|
|
83
|
+
"gray-matter": "^4.0.3",
|
|
84
|
+
"next": "14.2.5",
|
|
85
|
+
"next-mdx-remote": "^5.0.0",
|
|
86
|
+
"react": "^18",
|
|
87
|
+
"react-aria-components": "^1.2.1",
|
|
88
|
+
"react-dom": "^18",
|
|
89
|
+
"react-icons": "^5.2.1",
|
|
90
|
+
"url": "^0.11.3",
|
|
91
|
+
"walkdir": "^0.4.1",
|
|
92
|
+
"zustand": "^4.5.0"
|
|
93
|
+
},
|
|
94
|
+
"devDependencies": {
|
|
95
|
+
"@rollup/plugin-alias": "^5.1.0",
|
|
96
|
+
"@rollup/plugin-commonjs": "^25.0.7",
|
|
97
|
+
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
98
|
+
"@svgr/rollup": "^8.1.0",
|
|
99
|
+
"@types/mdx": "^2.0.11",
|
|
100
|
+
"@types/node": "^22.4.0",
|
|
101
|
+
"@types/react": "^18",
|
|
102
|
+
"@types/react-dom": "^18",
|
|
103
|
+
"babel-plugin-inline-react-svg": "^2.0.2",
|
|
104
|
+
"babel-plugin-syntax-hermes-parser": "^0.21.1",
|
|
105
|
+
"esbuild": "^0.21.3",
|
|
106
|
+
"eslint": "^8",
|
|
107
|
+
"eslint-config-next": "14.2.3",
|
|
108
|
+
"eslint-config-prettier": "^9.1.0",
|
|
109
|
+
"eslint-import-resolver-alias": "^1.1.2",
|
|
110
|
+
"eslint-plugin-import": "^2.29.1",
|
|
111
|
+
"eslint-plugin-prettier": "^5.1.3",
|
|
112
|
+
"husky": "^9.1.1",
|
|
113
|
+
"lint-staged": "^15.2.7",
|
|
114
|
+
"npm-run-all": "^4.1.5",
|
|
115
|
+
"prettier": "^3.2.5",
|
|
116
|
+
"rollup": "^4.17.2",
|
|
117
|
+
"rollup-plugin-delete": "^2.0.0",
|
|
118
|
+
"rollup-plugin-dts": "^6.1.1",
|
|
119
|
+
"rollup-plugin-esbuild": "^6.1.1",
|
|
120
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
121
|
+
"stylelint": "^16.7.0",
|
|
122
|
+
"stylelint-config-prettier": "^9.0.5",
|
|
123
|
+
"typescript": "^5"
|
|
124
|
+
}
|
|
125
|
+
}
|