-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.53 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.53 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
87
88
89
90
91
92
93
94
{
"name": "@szhsin/react-menu",
"version": "4.5.1",
"description": "React component for building accessible menu, dropdown, submenu, context menu, and more",
"author": "Zheng Song",
"license": "MIT",
"repository": "szhsin/react-menu",
"homepage": "https://szhsin.github.io/react-menu/",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.mjs",
"types": "./types/index.d.ts",
"publishConfig": {
"access": "public"
},
"sideEffects": [
"*.css"
],
"files": [
"dist",
"types/*.d.ts",
"style-utils"
],
"scripts": {
"bundle": "rollup -c",
"watch": "rollup -c -w",
"css": "sass src/styles:dist --no-source-map",
"clean": "rm -rf dist && mkdir -p dist",
"start": "run-p \"css -- --watch\" watch",
"build": "run-s pret clean lint types css bundle",
"test": "jest",
"test:watch": "jest --watch --verbose",
"test:cov": "jest --coverage=true",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"pret": "prettier -c .",
"pret:fix": "prettier -w .",
"types": "cd types && tsc",
"eg": "npm run dev --prefix example"
},
"peerDependencies": {
"react": ">=16.14.0",
"react-dom": ">=16.14.0"
},
"dependencies": {
"react-transition-state": "^2.3.3"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.3",
"@babel/preset-react": "^7.28.5",
"@rollup/plugin-babel": "^7.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/jest": "^30.0.0",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"babel-plugin-pure-annotations": "^0.1.2",
"deplift": "^1.3.0",
"eslint": "^9.39.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.15.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-hooks-addons": "^0.5.1",
"globals": "^17.6.0",
"jest": "^30.3.0",
"jest-axe": "^10.0.0",
"jest-dom-extended": "^0.2.1",
"jest-environment-jsdom": "^30.3.0",
"npm-run-all2": "^8.0.4",
"prettier": "^3.8.3",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"rollup": "^4.60.2",
"rollup-plugin-add-directive": "^1.0.0",
"sass": "^1.99.0",
"typescript": "^6.0.3"
},
"keywords": [
"react",
"menu",
"component",
"submenu",
"context menu",
"dropdown",
"tooltip",
"checkbox",
"radio button",
"accessibility",
"wai-aria"
]
}