-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.12 KB
/
package.json
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
{
"name": "dynamic-dock",
"version": "1.0.0",
"description": "A React component for creating a dynamic dock menu, mimicking the macOS dock style.",
"main": "dist/dynamic-dock.js",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"format": "npx prettier --write .",
"dev": "npx ladle serve"
},
"keywords": [
"react",
"macOS dock",
"dynamic navigation",
"UI component",
"interactive",
"web design",
"image dock",
"user interface"
],
"author": "ridemountainpig",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@ladle/react": "^4.0.2",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsup": "^8.0.2",
"typescript": "^5.1.6"
},
"peerDependencies": {
"react": "^16.8 || ^17 || ^18",
"react-dom": "^16.8 || ^17 || ^18"
}
}