-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.37 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.37 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
{
"name": "react-dock-menu",
"version": "0.0.5",
"description": "MacOS style dock menu for React",
"author": "arrastia",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"react-menu",
"macos",
"macos-dock",
"dock",
"react-dock",
"react-dock-menu"
],
"scripts": {
"cleanUp": "rimraf dist",
"test": "jest",
"build": "npm run cleanUp && rollup -c",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"eslint": "^8.31.0",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"framer-motion": "^8.2.4",
"jest": "^29.3.1",
"postcss-modules": "^6.0.0",
"react": "^18.2.0",
"rimraf": "^3.0.2",
"rollup": "^3.9.1",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"styled-components": "^5.3.6",
"typescript": "^4.9.4"
},
"peerDependencies": {
"framer-motion": ">=8.2.4",
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
}
}