r3d-icons 1.1.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/README.md +104 -0
- package/dist/index.cjs +32 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +1130 -0
- package/dist/index.d.ts +1130 -0
- package/dist/index.js +32 -0
- package/dist/index.js.map +1 -0
- package/package.json +62 -0
package/package.json
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "r3d-icons",
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "Premium, customizable, high-definition 3D icons built with React Three Fiber",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.cjs",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.js",
|
|
13
|
+
"require": "./dist/index.cjs"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist",
|
|
18
|
+
"README.md"
|
|
19
|
+
],
|
|
20
|
+
"author": "Krishna Kondoju",
|
|
21
|
+
"license": "MIT",
|
|
22
|
+
"repository": {
|
|
23
|
+
"type": "git",
|
|
24
|
+
"url": "git+https://github.com/krishnaUIDev/React-3D-Icons.git"
|
|
25
|
+
},
|
|
26
|
+
"bugs": {
|
|
27
|
+
"url": "https://github.com/krishnaUIDev/React-3D-Icons/issues"
|
|
28
|
+
},
|
|
29
|
+
"homepage": "https://github.com/krishnaUIDev/React-3D-Icons#readme",
|
|
30
|
+
"keywords": [
|
|
31
|
+
"react",
|
|
32
|
+
"3d",
|
|
33
|
+
"icons",
|
|
34
|
+
"threejs",
|
|
35
|
+
"r3f",
|
|
36
|
+
"react-three-fiber",
|
|
37
|
+
"customizable",
|
|
38
|
+
"glassmorphism",
|
|
39
|
+
"materials",
|
|
40
|
+
"design-system"
|
|
41
|
+
],
|
|
42
|
+
"publishConfig": {
|
|
43
|
+
"access": "public"
|
|
44
|
+
},
|
|
45
|
+
"scripts": {
|
|
46
|
+
"build": "tsup",
|
|
47
|
+
"prepublishOnly": "npm run build"
|
|
48
|
+
},
|
|
49
|
+
"peerDependencies": {
|
|
50
|
+
"@react-three/drei": ">=9.0.0",
|
|
51
|
+
"@react-three/fiber": ">=8.0.0",
|
|
52
|
+
"react": ">=18.0.0",
|
|
53
|
+
"react-dom": ">=18.0.0",
|
|
54
|
+
"three": ">=0.150.0"
|
|
55
|
+
},
|
|
56
|
+
"devDependencies": {
|
|
57
|
+
"@types/react": "^18.3.3",
|
|
58
|
+
"@types/three": "^0.166.0",
|
|
59
|
+
"tsup": "^8.1.0",
|
|
60
|
+
"typescript": "^5.4.5"
|
|
61
|
+
}
|
|
62
|
+
}
|