proctoring-ui-3 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/package.json ADDED
@@ -0,0 +1,33 @@
1
+ {
2
+ "name": "proctoring-ui-3",
3
+ "version": "1.0.0",
4
+ "description": "Centralized UI components for MFEs",
5
+ "main": "dist/ui-3.umd.js",
6
+ "module": "dist/ui-3.es.js",
7
+ "exports": {
8
+ ".": {
9
+ "import": "./dist/ui-3.es.js",
10
+ "require": "./dist/ui-3.umd.js"
11
+ },
12
+ "./tailwind": "./tailwind.config.js"
13
+ },
14
+ "files": [
15
+ "dist",
16
+ "tailwind.config.js"
17
+ ],
18
+ "scripts": {
19
+ "build": "vite build",
20
+ "dev": "vite build --watch"
21
+ },
22
+ "peerDependencies": {
23
+ "lucide-react": "^0.200.0",
24
+ "react": "^18.0.0",
25
+ "react-dom": "^18.0.0",
26
+ "react-router-dom": "^6.0.0",
27
+ "tailwindcss": "^3.0.0"
28
+ },
29
+ "devDependencies": {
30
+ "@vitejs/plugin-react": "^4.7.0",
31
+ "vite": "^5.4.21"
32
+ }
33
+ }
@@ -0,0 +1,13 @@
1
+ // tailwind.config.js
2
+ module.exports = {
3
+ content: [
4
+ // This tells Tailwind to look at the source files if someone clones the repo
5
+ "./src/**/*.{js,jsx,ts,tsx}",
6
+ ],
7
+ theme: {
8
+ extend: {
9
+ // Add any custom brand colors here that your components rely on
10
+ },
11
+ },
12
+ plugins: [],
13
+ };