-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.86 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@lbfalvy/react-context-menu",
"version": "1.0.2",
"description": "Convenient and flexible custom context menus in React",
"keywords": [
"react",
"component",
"contextmenu",
"dropdown",
"menu",
"context-menu"
],
"main": "build/cjs/index.js",
"module": "build/esm/index.js",
"types": "build/types/index.d.ts",
"sideEffects": [
"**/*.scss"
],
"scripts": {
"build": "rollup --config",
"test": "jest",
"prepublishOnly": "npm run build",
"debug": "rollup --config rollup.demo.config.mjs --watch"
},
"author": "Lawrence Bethlenfalvy <[email protected]>",
"repository": "https://github.com/lbfalvy/react-context-menu.git",
"homepage": "https://github.com/lbfalvy/react-context-menu",
"license": "MIT",
"files": [
"build"
],
"peerDependencies": {
"react": "16 - 18"
},
"devDependencies": {
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@rollup/plugin-commonjs": "^23.0.0",
"@rollup/plugin-html": "^1.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-replace": "^5.0.0",
"@types/jest": "^27.0.1",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/react-is": "^17.0.3",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^27.2.0",
"jest": "^27.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"rollup": "^3.2.2",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-sass": "^1.12.16",
"rollup-plugin-serve": "^2.0.1",
"rollup-plugin-ts": "^3.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@lbfalvy/react-utils": "^1.0.3",
"@lbfalvy/usedimensions": "^1.0.1"
}
}