@huin-core/react-slot 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/README.md +13 -0
  2. package/package.json +50 -0
package/README.md ADDED
@@ -0,0 +1,13 @@
1
+ # `react-slot`
2
+
3
+ ## Installation
4
+
5
+ ```sh
6
+ $ yarn add @huin-core/react-slot
7
+ # or
8
+ $ npm install @huin-core/react-slot
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ View docs [here](https://huinhub.com/primitives/docs/utilities/slot).
package/package.json ADDED
@@ -0,0 +1,50 @@
1
+ {
2
+ "name": "@huin-core/react-slot",
3
+ "version": "1.0.0",
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/react-compose-refs": "workspace:*"
32
+ },
33
+ "peerDependencies": {
34
+ "@types/react": "*",
35
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
36
+ },
37
+ "peerDependenciesMeta": {
38
+ "@types/react": {
39
+ "optional": true
40
+ }
41
+ },
42
+ "homepage": "https://huinhub.com/primitives",
43
+ "repository": {
44
+ "type": "git",
45
+ "url": "git+https://github.com/firatorhan/huin-core.git"
46
+ },
47
+ "bugs": {
48
+ "url": "https://github.com/firatorhan/huin-core/issues"
49
+ }
50
+ }