@huin-core/react-context-menu 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +13 -0
  2. package/package.json +60 -0
package/README.md ADDED
@@ -0,0 +1,13 @@
1
+ # `react-context-menu`
2
+
3
+ ## Installation
4
+
5
+ ```sh
6
+ $ yarn add @huin-core/react-context-menu
7
+ # or
8
+ $ npm install @huin-core/react-context-menu
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ View docs [here](https://huinhub.com/primitives/docs/components/context-menu).
package/package.json ADDED
@@ -0,0 +1,60 @@
1
+ {
2
+ "name": "@huin-core/react-context-menu",
3
+ "version": "1.0.1",
4
+ "license": "MIT",
5
+ "exports": {
6
+ ".": {
7
+ "import": {
8
+ "types": "./dist/index.d.mts",
9
+ "default": "./dist/index.mjs"
10
+ },
11
+ "require": {
12
+ "types": "./dist/index.d.ts",
13
+ "default": "./dist/index.js"
14
+ }
15
+ }
16
+ },
17
+ "source": "./src/index.ts",
18
+ "main": "./dist/index.js",
19
+ "module": "./dist/index.mjs",
20
+ "types": "./dist/index.d.ts",
21
+ "files": [
22
+ "dist",
23
+ "README.md"
24
+ ],
25
+ "sideEffects": false,
26
+ "scripts": {
27
+ "clean": "rm -rf dist",
28
+ "version": "yarn version"
29
+ },
30
+ "dependencies": {
31
+ "@huin-core/primitive": "workspace:*",
32
+ "@huin-core/react-context": "workspace:*",
33
+ "@huin-core/react-menu": "workspace:*",
34
+ "@huin-core/react-primitive": "workspace:*",
35
+ "@huin-core/react-use-callback-ref": "workspace:*",
36
+ "@huin-core/react-use-controllable-state": "workspace:*"
37
+ },
38
+ "peerDependencies": {
39
+ "@types/react": "*",
40
+ "@types/react-dom": "*",
41
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
42
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
43
+ },
44
+ "peerDependenciesMeta": {
45
+ "@types/react": {
46
+ "optional": true
47
+ },
48
+ "@types/react-dom": {
49
+ "optional": true
50
+ }
51
+ },
52
+ "homepage": "https://huinhub.com/primitives",
53
+ "repository": {
54
+ "type": "git",
55
+ "url": "git+https://github.com/firatorhan/huin-core.git"
56
+ },
57
+ "bugs": {
58
+ "url": "https://github.com/firatorhan/huin-core/issues"
59
+ }
60
+ }