-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.5 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "react-3d-button",
"version": "1.2.0",
"description": "A beautiful, customizable 3D button component for React with Next.js support, toggle mode, multiple themes, and easy CSS variable customization. Built on top of react-awesome-button with enhanced mobile touch support and Next.js compatibility.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./styles": "./dist/styles.css",
"./themes/ocean.css": "./dist/themes/ocean.css",
"./themes/sunset.css": "./dist/themes/sunset.css",
"./themes/forest.css": "./dist/themes/forest.css",
"./themes/pirate.css": "./dist/themes/pirate.css",
"./themes/neon.css": "./dist/themes/neon.css",
"./themes/ocean.global.css": "./dist/themes/ocean.global.css",
"./themes/sunset.global.css": "./dist/themes/sunset.global.css",
"./themes/forest.global.css": "./dist/themes/forest.global.css",
"./themes/pirate.global.css": "./dist/themes/pirate.global.css",
"./themes/neon.global.css": "./dist/themes/neon.global.css",
"./dist/*": "./dist/*"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "npm run build:js && npm run build:types && npm run build:css",
"build:js": "tsup",
"build:types": "tsc --emitDeclarationOnly --declaration --declarationMap",
"build:css": "node scripts/build-css.js",
"prepublishOnly": "npm run build",
"dev": "tsup --watch",
"clean": "rm -rf dist"
},
"keywords": [
"react",
"button",
"3d",
"3d-button",
"ui",
"component",
"nextjs",
"react-component",
"typescript",
"themes",
"customizable",
"awesome-button",
"tactile",
"interactive",
"toggle",
"toggle-button",
"switch",
"toggle-switch"
],
"author": "Furkan Boran",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/boranfurkan/react-3d-button.git"
},
"bugs": {
"url": "https://github.com/boranfurkan/react-3d-button/issues"
},
"homepage": "https://react-3d-button-demo.vercel.app/",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"tsup": "^8.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=16.0.0"
}
}