ikoncomponents 1.4.3 → 1.4.5
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 +7 -7
- /package/{src → dist}/styles.css +0 -0
package/package.json
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ikoncomponents",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.5",
|
|
4
4
|
"description": "A React component library built with Radix UI and Tailwind CSS",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"files": [
|
|
8
8
|
"dist",
|
|
9
|
-
"src/styles.css",
|
|
10
9
|
"README.md"
|
|
11
10
|
],
|
|
12
11
|
"exports": {
|
|
@@ -14,8 +13,7 @@
|
|
|
14
13
|
"types": "./dist/index.d.ts",
|
|
15
14
|
"default": "./dist/index.js"
|
|
16
15
|
},
|
|
17
|
-
"./styles.css": "./
|
|
18
|
-
"./dist/styles.css": "./src/styles.css",
|
|
16
|
+
"./styles.css": "./dist/styles.css",
|
|
19
17
|
"./hooks": {
|
|
20
18
|
"types": "./dist/hooks/index.d.ts",
|
|
21
19
|
"default": "./dist/hooks/index.js"
|
|
@@ -26,8 +24,9 @@
|
|
|
26
24
|
}
|
|
27
25
|
},
|
|
28
26
|
"scripts": {
|
|
29
|
-
"build": "npm run clean && tsc -p tsconfig.json",
|
|
30
27
|
"clean": "rimraf dist",
|
|
28
|
+
"build": "npm run clean && tsc -p tsconfig.json && npm run copy:css",
|
|
29
|
+
"copy:css": "copyfiles -u 1 src/styles.css dist",
|
|
31
30
|
"prepublishOnly": "npm run build"
|
|
32
31
|
},
|
|
33
32
|
"keywords": [
|
|
@@ -45,9 +44,9 @@
|
|
|
45
44
|
"url": "your-repo-url"
|
|
46
45
|
},
|
|
47
46
|
"peerDependencies": {
|
|
47
|
+
"next": "^14.0.0 || ^15.0.0 || ^16.0.0",
|
|
48
48
|
"react": "^18.0.0 || ^19.0.0",
|
|
49
49
|
"react-dom": "^18.0.0 || ^19.0.0",
|
|
50
|
-
"next": "^14.0.0 || ^15.0.0 || ^16.0.0",
|
|
51
50
|
"tailwindcss": "^3.0.0 || ^4.0.0"
|
|
52
51
|
},
|
|
53
52
|
"peerDependenciesMeta": {
|
|
@@ -114,7 +113,8 @@
|
|
|
114
113
|
"@types/react-big-calendar": "^1.16.3",
|
|
115
114
|
"@types/react-dom": "^19",
|
|
116
115
|
"@types/zxcvbn": "^4.4.5",
|
|
116
|
+
"copyfiles": "^2.4.1",
|
|
117
117
|
"rimraf": "^6.0.1",
|
|
118
118
|
"typescript": "^5"
|
|
119
119
|
}
|
|
120
|
-
}
|
|
120
|
+
}
|
/package/{src → dist}/styles.css
RENAMED
|
File without changes
|