@icon-craft/react-ts 1.0.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/LICENSE +73 -0
- package/README.md +1018 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.esm.js +2 -0
- package/dist/index.esm.js.map +1 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -0
- package/package.json +101 -0
package/package.json
ADDED
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@icon-craft/react-ts",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "A comprehensive TypeScript-first React icon library with 3475+ beautifully crafted SVG icons from Feather Icons and Remix Icon - fully typed, tree-shakeable, and zero dependencies",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"module": "dist/index.esm.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./dist/index.esm.js",
|
|
12
|
+
"require": "./dist/index.js",
|
|
13
|
+
"types": "./dist/index.d.ts"
|
|
14
|
+
},
|
|
15
|
+
"./package.json": "./package.json"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist",
|
|
19
|
+
"README.md",
|
|
20
|
+
"LICENSE"
|
|
21
|
+
],
|
|
22
|
+
"scripts": {
|
|
23
|
+
"clean": "rm -rf dist",
|
|
24
|
+
"generate": "node node_modules/.bin/tsx scripts/generate-components.ts",
|
|
25
|
+
"build": "npm run build:rollup && npm run build:types",
|
|
26
|
+
"build:rollup": "node node_modules/.bin/rollup -c",
|
|
27
|
+
"build:types": "node node_modules/.bin/tsc --emitDeclarationOnly",
|
|
28
|
+
"dev": "node node_modules/.bin/rollup -c -w",
|
|
29
|
+
"test": "echo \"No tests yet\" && exit 0"
|
|
30
|
+
},
|
|
31
|
+
"keywords": [
|
|
32
|
+
"react",
|
|
33
|
+
"typescript",
|
|
34
|
+
"icons",
|
|
35
|
+
"icon-library",
|
|
36
|
+
"svg",
|
|
37
|
+
"svg-icons",
|
|
38
|
+
"react-icons",
|
|
39
|
+
"icon-craft",
|
|
40
|
+
"feather",
|
|
41
|
+
"feather-icons",
|
|
42
|
+
"remix",
|
|
43
|
+
"remix-icons",
|
|
44
|
+
"ui-icons",
|
|
45
|
+
"react-components",
|
|
46
|
+
"design-system",
|
|
47
|
+
"iconography",
|
|
48
|
+
"vector-icons",
|
|
49
|
+
"tsx",
|
|
50
|
+
"ts",
|
|
51
|
+
"typed",
|
|
52
|
+
"type-safe",
|
|
53
|
+
"frontend",
|
|
54
|
+
"web-components"
|
|
55
|
+
],
|
|
56
|
+
"author": {
|
|
57
|
+
"name": "Krish Patel",
|
|
58
|
+
"url": "https://github.com/PATEL-KRISH-0"
|
|
59
|
+
},
|
|
60
|
+
"license": "MIT",
|
|
61
|
+
"repository": {
|
|
62
|
+
"type": "git",
|
|
63
|
+
"url": "git+https://github.com/PATEL-KRISH-0/icon-craft.git"
|
|
64
|
+
},
|
|
65
|
+
"bugs": {
|
|
66
|
+
"url": "https://github.com/PATEL-KRISH-0/icon-craft/issues"
|
|
67
|
+
},
|
|
68
|
+
"homepage": "https://github.com/PATEL-KRISH-0/icon-craft#readme",
|
|
69
|
+
"peerDependencies": {
|
|
70
|
+
"react": ">=16.8.0",
|
|
71
|
+
"react-dom": ">=16.8.0"
|
|
72
|
+
},
|
|
73
|
+
"devDependencies": {
|
|
74
|
+
"@babel/core": "^7.23.6",
|
|
75
|
+
"@babel/preset-env": "^7.23.6",
|
|
76
|
+
"@babel/preset-react": "^7.23.3",
|
|
77
|
+
"@babel/preset-typescript": "^7.23.3",
|
|
78
|
+
"@rollup/plugin-babel": "^6.0.4",
|
|
79
|
+
"@rollup/plugin-commonjs": "^25.0.7",
|
|
80
|
+
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
81
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
82
|
+
"@rollup/plugin-typescript": "^11.1.5",
|
|
83
|
+
"@types/node": "^20.10.5",
|
|
84
|
+
"@types/react": "^18.2.45",
|
|
85
|
+
"@types/react-dom": "^18.2.18",
|
|
86
|
+
"prop-types": "^15.8.1",
|
|
87
|
+
"rollup": "^4.57.1",
|
|
88
|
+
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
89
|
+
"tslib": "^2.6.2",
|
|
90
|
+
"tsx": "^4.7.0",
|
|
91
|
+
"typescript": "^5.3.3"
|
|
92
|
+
},
|
|
93
|
+
"engines": {
|
|
94
|
+
"node": ">=14.0.0",
|
|
95
|
+
"npm": ">=6.0.0"
|
|
96
|
+
},
|
|
97
|
+
"publishConfig": {
|
|
98
|
+
"access": "public",
|
|
99
|
+
"registry": "https://registry.npmjs.org/"
|
|
100
|
+
}
|
|
101
|
+
}
|