@react-cupertino-ui/shared 0.0.0 → 1.0.2

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 +22 -0
  2. package/package.json +5 -5
package/README.md ADDED
@@ -0,0 +1,22 @@
1
+ # @react-cupertino-ui/shared
2
+
3
+ Shared utilities and tokens for React Cupertino UI
4
+
5
+ part of [React Cupertino UI](https://github.com/Andersonlimahw/react-cupertino-ui)
6
+
7
+ ## Installation
8
+
9
+ npm install @react-cupertino-ui/shared
10
+ # or
11
+ pnpm add @react-cupertino-ui/shared
12
+ # or
13
+ yarn add @react-cupertino-ui/shared
14
+
15
+ ## Usage
16
+
17
+ Import utilities or types from this shared package.
18
+
19
+ ## Links
20
+ - [Website](http://react-cupertino-ui.pro/)
21
+ - [Storybook](http://react-cupertino-ui.pro/storybook/)
22
+ - [GitHub](https://github.com/Andersonlimahw/react-cupertino-ui)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-cupertino-ui/shared",
3
- "version": "0.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Shared utilities and tokens for React Cupertino UI",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -10,9 +10,6 @@
10
10
  "dist"
11
11
  ],
12
12
  "sideEffects": false,
13
- "scripts": {
14
- "build": "tsc -p tsconfig.build.json"
15
- },
16
13
  "peerDependencies": {
17
14
  "react": "^18.3.1"
18
15
  },
@@ -27,5 +24,8 @@
27
24
  "gitHead": "a6b07a7a8a0ab6f4c80884b6fb9d5eb16ee6da1d",
28
25
  "publishConfig": {
29
26
  "access": "public"
27
+ },
28
+ "scripts": {
29
+ "build": "tsc -p tsconfig.build.json"
30
30
  }
31
- }
31
+ }