@horang-corp/react-welcome-license-modal 0.1.0

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.
package/index.d.ts ADDED
@@ -0,0 +1,4 @@
1
+ import type { FC } from 'react'
2
+
3
+ export declare const WelcomeLicenseModal: FC
4
+ export default WelcomeLicenseModal
package/package.json ADDED
@@ -0,0 +1,29 @@
1
+ {
2
+ "name": "@horang-corp/react-welcome-license-modal",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "private": false,
6
+ "sideEffects": false,
7
+ "exports": {
8
+ ".": {
9
+ "types": "./index.d.ts",
10
+ "import": "./dist/index.js"
11
+ }
12
+ },
13
+ "files": [
14
+ "dist",
15
+ "index.d.ts"
16
+ ],
17
+ "scripts": {
18
+ "build": "vite build",
19
+ "pack:local": "pnpm pack"
20
+ },
21
+ "peerDependencies": {
22
+ "react": ">=18 <20",
23
+ "react-dom": ">=18 <20"
24
+ },
25
+ "dependencies": {
26
+ "@horang-corp/react-modal": "^0.1.5",
27
+ "@horang-corp/react-system": "^0.1.2"
28
+ }
29
+ }