@fxhash/params 0.0.4

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 +66 -0
package/README.md ADDED
@@ -0,0 +1,13 @@
1
+ # fx(params)
2
+
3
+ `@fxhash/params` contains all code related to fx(params) feature
4
+
5
+ ## Installation
6
+
7
+ `yarn add @fxhash/params react react-dom zod`
8
+
9
+ ## Usage
10
+
11
+ ```
12
+ import { BaseButton, BaseInput } from "@fxhash/params/BaseInput"
13
+ ```
package/package.json ADDED
@@ -0,0 +1,66 @@
1
+ {
2
+ "name": "@fxhash/params",
3
+ "version": "0.0.4",
4
+ "author": "fxhash",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/fxhash/fxhash-package"
9
+ },
10
+ "publishConfig": {
11
+ "access": "public"
12
+ },
13
+ "main": "dist/index.cjs",
14
+ "module": "dist/index.js",
15
+ "types": "dist/index.d.ts",
16
+ "type": "module",
17
+ "exports": {
18
+ "./*": {
19
+ "types": "./dist/*.d.ts",
20
+ "require": "./dist/*.cjs",
21
+ "import": "./dist/*.js"
22
+ }
23
+ },
24
+ "typesVersions": {
25
+ "*": {
26
+ "*": [
27
+ "./dist/*"
28
+ ]
29
+ }
30
+ },
31
+ "files": [
32
+ "dist"
33
+ ],
34
+ "dependencies": {
35
+ "@fortawesome/react-fontawesome": "0.2.0",
36
+ "@fortawesome/free-solid-svg-icons": "6.4.0",
37
+ "classnames": "2.3.2",
38
+ "lodash.debounce": "4.0.8",
39
+ "react-colorful": "5.6.1",
40
+ "sha1": "1.1.1",
41
+ "zod": "3.21.4"
42
+ },
43
+ "peerDependencies": {
44
+ "react": "^18.0.0",
45
+ "react-dom": "^18.0.0"
46
+ },
47
+ "devDependencies": {
48
+ "@types/lodash.debounce": "4.0.7",
49
+ "@types/node-sass": "4.11.3",
50
+ "@types/react": "18.2.15",
51
+ "@types/react-dom": "18.2.7",
52
+ "@types/sha1": "1.1.3",
53
+ "autoprefixer": "10.4.14",
54
+ "esbuild-css-modules-plugin": "2.7.1",
55
+ "esbuild-sass-plugin": "2.12.0",
56
+ "node-sass": "8.0.0",
57
+ "postcss": "8.4.26",
58
+ "tslib": "2.6.0",
59
+ "tsup": "6.6.0",
60
+ "typescript": "4.9.5"
61
+ },
62
+ "scripts": {
63
+ "build": "tsup",
64
+ "dev": "tsup --watch"
65
+ }
66
+ }