nexaas-ui-components 1.0.6

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,104 @@
1
+ {
2
+ "name": "nexaas-ui-components",
3
+ "version": "1.0.6",
4
+ "description": "A React component library with Tailwind CSS",
5
+ "main": "dist/index.cjs",
6
+ "module": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "files": [
9
+ "dist"
10
+ ],
11
+ "exports": {
12
+ ".": {
13
+ "types": "./dist/index.d.ts",
14
+ "import": "./dist/index.js",
15
+ "require": "./dist/index.cjs"
16
+ },
17
+ "./styles.css": "./dist/index.css"
18
+ },
19
+ "scripts": {
20
+ "build:css": "npx tailwindcss -i ./src/styles/index.css -o ./dist/index.css --minify --content './src/**/*.{ts,tsx,js,jsx,html}'",
21
+ "build": "tsup && npm run build:css",
22
+ "dev": "concurrently \"tsup --watch\" \"postcss src/styles/index.css -o dist/index.css --watch\"",
23
+ "dev:css": "postcss src/styles/index.css -o dist/index.css --watch",
24
+ "prepublishOnly": "npm run build"
25
+ },
26
+ "peerDependencies": {
27
+ "@blueprintjs/core": ">=5.0.0",
28
+ "@blueprintjs/datetime": ">=5.0.0",
29
+ "@blueprintjs/datetime2": ">=2.0.0",
30
+ "@headlessui-float/react": "^0.15.0",
31
+ "@tanstack/match-sorter-utils": "^8.0.0",
32
+ "@tanstack/react-table": "^8.0.0",
33
+ "big.js": ">=6.0.0",
34
+ "lodash": "^4.0.0",
35
+ "react": "^18.2.0",
36
+ "react-dom": "^18.2.0",
37
+ "react-hook-form": "^7.0.0",
38
+ "react-input-mask": "^2.0.0",
39
+ "react-intl-currency-input": ">=0.0.0",
40
+ "react-loading-skeleton": "^3.3.1",
41
+ "react-modal": "^3.0.0",
42
+ "react-select": "^5.0.0",
43
+ "react-tooltip": "^5.0.0",
44
+ "slick-carousel": "^1.8.1"
45
+ },
46
+ "keywords": [
47
+ "react",
48
+ "components",
49
+ "ui",
50
+ "tailwind",
51
+ "tailwindcss",
52
+ "design-system"
53
+ ],
54
+ "author": "",
55
+ "license": "ISC",
56
+ "repository": {
57
+ "type": "git",
58
+ "url": ""
59
+ },
60
+ "homepage": "",
61
+ "type": "module",
62
+ "dependencies": {
63
+ "@blueprintjs/icons": "^6.2.0",
64
+ "@blueprintjs/select": "^6.0.6",
65
+ "@headlessui-float/react": "^0.15.0",
66
+ "@headlessui/react": "^2.2.9",
67
+ "clsx": "^2.1.1",
68
+ "date-fns": "^2.30.0",
69
+ "lodash": "^4.0.0",
70
+ "nanoid": "^5.1.6",
71
+ "zustand": "^5.0.8"
72
+ },
73
+ "devDependencies": {
74
+ "@blueprintjs/core": "^6.3.2",
75
+ "@blueprintjs/datetime": "^6.0.6",
76
+ "@blueprintjs/datetime2": "^3.0.6",
77
+ "@tailwindcss/postcss": "^4.1.16",
78
+ "@tanstack/match-sorter-utils": "^8.19.4",
79
+ "@tanstack/react-table": "^8.21.3",
80
+ "@types/lodash": "^4.17.20",
81
+ "@types/react": "^19.2.2",
82
+ "@types/react-dom": "^19.2.2",
83
+ "@types/react-input-mask": "^3.0.6",
84
+ "@types/react-modal": "^3.16.3",
85
+ "@types/react-select": "^5.0.0",
86
+ "autoprefixer": "^10.4.21",
87
+ "concurrently": "^9.2.1",
88
+ "date-fns": "^2.30.0",
89
+ "postcss-cli": "^11.0.1",
90
+ "postcss-import": "^16.1.1",
91
+ "react": "^18.2.0",
92
+ "react-dom": "^18.2.0",
93
+ "react-hook-form": "^7.65.0",
94
+ "react-input-mask": "^2.0.4",
95
+ "react-loading-skeleton": "^3.5.0",
96
+ "react-modal": "^3.16.3",
97
+ "react-select": "^5.10.2",
98
+ "react-tooltip": "^5.30.0",
99
+ "slick-carousel": "^1.8.1",
100
+ "tailwindcss": "^3.4.18",
101
+ "tsup": "^8.5.0",
102
+ "typescript": "^5.9.3"
103
+ }
104
+ }