@ilivemylife/react-sdk 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/package.json ADDED
@@ -0,0 +1,45 @@
1
+ {
2
+ "name": "@ilivemylife/react-sdk",
3
+ "version": "0.1.0",
4
+ "description": "Embed iLiveMyLife into a React app: SSO login (functions/hook) + chat messenger (component). One vetted security surface, reused across apps.",
5
+ "license": "UNLICENSED",
6
+ "author": "Ilya Sorokin <info@ilivemylife.io> (https://ilivemylife.io)",
7
+ "homepage": "https://ilivemylife.io",
8
+ "keywords": ["ilivemylife", "ilml", "sso", "embed", "messenger", "react", "knowledge-graph"],
9
+ "type": "module",
10
+ "main": "./dist/index.cjs",
11
+ "module": "./dist/index.js",
12
+ "types": "./dist/index.d.ts",
13
+ "exports": {
14
+ ".": {
15
+ "import": {
16
+ "types": "./dist/index.d.ts",
17
+ "default": "./dist/index.js"
18
+ },
19
+ "require": {
20
+ "types": "./dist/index.d.cts",
21
+ "default": "./dist/index.cjs"
22
+ }
23
+ },
24
+ "./styles.css": "./dist/styles.css"
25
+ },
26
+ "files": ["dist"],
27
+ "scripts": {
28
+ "build": "tsup",
29
+ "dev": "tsup --watch",
30
+ "prepublishOnly": "npm run build"
31
+ },
32
+ "peerDependencies": {
33
+ "react": ">=17"
34
+ },
35
+ "devDependencies": {
36
+ "@types/react": "^18.3.0",
37
+ "react": "^18.3.1",
38
+ "tsup": "^8.0.0",
39
+ "typescript": "^5.4.0"
40
+ },
41
+ "publishConfig": {
42
+ "access": "public"
43
+ },
44
+ "sideEffects": false
45
+ }