-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 2.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@florexlabs/ui",
"version": "0.1.3",
"description": "Dark-first React component library by Florex Labs — 46+ accessible components, design tokens, and Tailwind CSS v4 integration for building modern web applications.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./florex.css": "./dist/florex.css"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup && cp src/themes/florex.css dist/florex.css",
"dev": "tsup --watch",
"lint": "eslint src/ && node scripts/tailwind-canonical.mjs",
"lint:fix": "eslint src/ --fix && node scripts/tailwind-canonical.mjs --fix",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm build && pnpm test",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"peerDependencies": {
"@phosphor-icons/react": ">=2",
"react": ">=18",
"react-dom": ">=18",
"tailwindcss": ">=4"
},
"peerDependenciesMeta": {
"@phosphor-icons/react": {
"optional": true
}
},
"dependencies": {
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"tailwind-merge": "3.0.2"
},
"devDependencies": {
"@eslint/js": "9.25.1",
"@phosphor-icons/react": "2.1.7",
"@storybook/addon-essentials": "8.6.14",
"@storybook/react": "8.6.14",
"@storybook/react-vite": "8.6.14",
"@tailwindcss/vite": "4.1.8",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.3.0",
"@types/react": "19.1.2",
"@types/react-dom": "19.1.2",
"eslint": "9.25.1",
"jsdom": "26.1.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"storybook": "8.6.14",
"tsup": "8.4.0",
"typescript": "5.8.3",
"typescript-eslint": "8.31.1",
"vitest": "3.1.3"
},
"license": "MIT",
"author": {
"name": "Florex Labs",
"url": "https://florexlabs.com"
},
"homepage": "https://florextech.github.io/florex-ui",
"repository": {
"type": "git",
"url": "git+https://github.com/florextech/florex-ui.git"
},
"bugs": {
"url": "https://github.com/florextech/florex-ui/issues"
},
"keywords": [
"florex",
"florexlabs",
"ui",
"react",
"components",
"component-library",
"design-system",
"tailwindcss",
"tailwind",
"dark-theme",
"dark-mode",
"typescript",
"accessible",
"a11y",
"phosphor-icons",
"cva",
"class-variance-authority"
],
"engines": {
"node": ">=18"
}
}