@khraben/flowui 1.0.3 → 1.0.4

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.
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "@khraben/flowui",
3
+ "version": "1.0.4",
4
+ "description": "FlowUI - Modern React component library with TypeScript and CSS-in-JS",
5
+ "main": "index.js",
6
+ "module": "index.mjs",
7
+ "types": "index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./index.d.ts",
11
+ "import": "./index.mjs",
12
+ "require": "./index.js"
13
+ }
14
+ },
15
+ "sideEffects": false,
16
+ "files": ["index.js", "index.mjs", "index.d.ts", "index.d.mts", "*.map"],
17
+ "peerDependencies": {
18
+ "react": ">=18 <20",
19
+ "react-dom": ">=18 <20"
20
+ },
21
+ "dependencies": {
22
+ "date-fns": "^4.1.0",
23
+ "framer-motion": "^12.34.0",
24
+ "lucide-react": "^0.562.0",
25
+ "react-datepicker": "^9.1.0"
26
+ },
27
+ "overrides": {
28
+ "closure-net": "npm:noop-package@^1.0.0"
29
+ },
30
+ "repository": {
31
+ "type": "git",
32
+ "url": "git+https://github.com/khraben/FlowUI.git"
33
+ },
34
+ "keywords": ["react", "components", "ui", "css-in-js", "typescript"],
35
+ "author": "khraben",
36
+ "license": "MIT",
37
+ "publishConfig": {
38
+ "access": "public",
39
+ "registry": "https://registry.npmjs.org"
40
+ }
41
+ }
package/package.json CHANGED
@@ -1,22 +1,47 @@
1
1
  {
2
2
  "name": "@khraben/flowui",
3
- "version": "1.0.3",
4
- "description": "FlowUI - Modern React component library with TypeScript and CSS-in-JS",
5
- "main": "index.js",
6
- "module": "index.mjs",
7
- "types": "index.d.ts",
3
+ "version": "1.0.4",
4
+ "private": false,
5
+ "description": "FlowUI - React component library with 100% customizable colors via props and CSS-in-JS",
6
+ "main": "./dist/index.js",
7
+ "module": "./dist/index.mjs",
8
+ "types": "./dist/index.d.ts",
8
9
  "exports": {
9
10
  ".": {
10
- "types": "./index.d.ts",
11
- "import": "./index.mjs",
12
- "require": "./index.js"
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.mjs",
13
+ "require": "./dist/index.js"
13
14
  }
14
15
  },
15
- "sideEffects": false,
16
- "files": ["index.js", "index.mjs", "index.d.ts", "index.d.mts", "*.map"],
17
- "peerDependencies": {
18
- "react": ">=18 <20",
19
- "react-dom": ">=18 <20"
16
+ "files": [
17
+ "dist",
18
+ "README.md",
19
+ "LICENSE"
20
+ ],
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "git+https://github.com/Khraben/FlowUI.git"
24
+ },
25
+ "publishConfig": {
26
+ "access": "public",
27
+ "registry": "https://registry.npmjs.org"
28
+ },
29
+ "keywords": [
30
+ "react",
31
+ "components",
32
+ "ui",
33
+ "typescript",
34
+ "css-in-js"
35
+ ],
36
+ "author": "Khraben",
37
+ "license": "MIT",
38
+ "scripts": {
39
+ "dev": "next dev",
40
+ "build": "next build",
41
+ "build:lib": "rm -rf dist && tsup && cp package.lib.json dist/package.json && cp README.md LICENSE dist/",
42
+ "start": "next start",
43
+ "lint": "eslint",
44
+ "prepublishOnly": "npm run build:lib"
20
45
  },
21
46
  "dependencies": {
22
47
  "date-fns": "^4.1.0",
@@ -24,18 +49,29 @@
24
49
  "lucide-react": "^0.562.0",
25
50
  "react-datepicker": "^9.1.0"
26
51
  },
52
+ "peerDependencies": {
53
+ "react": "^18.0.0 || ^19.0.0",
54
+ "react-dom": "^18.0.0 || ^19.0.0"
55
+ },
27
56
  "overrides": {
28
57
  "closure-net": "npm:noop-package@^1.0.0"
29
58
  },
30
- "repository": {
31
- "type": "git",
32
- "url": "git+https://github.com/khraben/FlowUI.git"
33
- },
34
- "keywords": ["react", "components", "ui", "css-in-js", "typescript"],
35
- "author": "khraben",
36
- "license": "MIT",
37
- "publishConfig": {
38
- "access": "public",
39
- "registry": "https://registry.npmjs.org"
59
+ "devDependencies": {
60
+ "@tailwindcss/postcss": "^4",
61
+ "@types/node": "^20",
62
+ "@types/react": "^19",
63
+ "@types/react-datepicker": "^6.2.0",
64
+ "@types/react-dom": "^19",
65
+ "eslint": "^9",
66
+ "eslint-config-next": "16.1.4",
67
+ "eslint-config-prettier": "^10.1.8",
68
+ "eslint-plugin-prettier": "^5.5.5",
69
+ "next": "16.1.4",
70
+ "prettier": "^3.8.1",
71
+ "react": "19.2.3",
72
+ "react-dom": "19.2.3",
73
+ "tailwindcss": "^4",
74
+ "tsup": "^8.3.5",
75
+ "typescript": "^5"
40
76
  }
41
77
  }