@martinsura/ui 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/package.json ADDED
@@ -0,0 +1,69 @@
1
+ {
2
+ "name": "@martinsura/ui",
3
+ "version": "0.1.0",
4
+ "description": "Minimal React UI component library built on Tailwind CSS v4",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/martinsura/ui.git"
9
+ },
10
+ "homepage": "https://github.com/martinsura/ui",
11
+ "bugs": {
12
+ "url": "https://github.com/martinsura/ui/issues"
13
+ },
14
+ "keywords": [
15
+ "react",
16
+ "ui",
17
+ "components",
18
+ "tailwindcss",
19
+ "design-system"
20
+ ],
21
+ "type": "module",
22
+ "main": "./dist/index.cjs",
23
+ "module": "./dist/index.js",
24
+ "types": "./dist/index.d.ts",
25
+ "exports": {
26
+ ".": {
27
+ "types": "./dist/index.d.ts",
28
+ "import": "./dist/index.js",
29
+ "require": "./dist/index.cjs"
30
+ },
31
+ "./dist/index.css": "./dist/index.css"
32
+ },
33
+ "files": [
34
+ "dist"
35
+ ],
36
+ "sideEffects": [
37
+ "./dist/index.css"
38
+ ],
39
+ "scripts": {
40
+ "build": "tsup && tailwindcss -i src/index.css -o dist/index.css --minify",
41
+ "start": "vite"
42
+ },
43
+ "publishConfig": {
44
+ "access": "public"
45
+ },
46
+ "peerDependencies": {
47
+ "react": ">=18",
48
+ "react-dom": ">=18"
49
+ },
50
+ "dependencies": {
51
+ "@tabler/icons-react": "^3.0.0",
52
+ "class-variance-authority": "^0.7.0",
53
+ "dayjs": "^1.11.0",
54
+ "tailwind-merge": "^2.0.0"
55
+ },
56
+ "devDependencies": {
57
+ "@tailwindcss/cli": "^4.2.1",
58
+ "@tailwindcss/vite": "^4.2.1",
59
+ "@types/react": "^19.0.0",
60
+ "@types/react-dom": "^19.0.0",
61
+ "@vitejs/plugin-react": "^5.1.4",
62
+ "react": "^19.2.4",
63
+ "react-dom": "^19.2.4",
64
+ "tailwindcss": "^4.2.1",
65
+ "tsup": "^8.0.0",
66
+ "typescript": "^5.0.0",
67
+ "vite": "^7.3.1"
68
+ }
69
+ }