@dialtribe/react-sdk 0.1.0-alpha.5

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,84 @@
1
+ {
2
+ "name": "@dialtribe/react-sdk",
3
+ "version": "0.1.0-alpha.5",
4
+ "description": "Official DialTribe SDK for React - Media players, authentication, and API integration",
5
+ "main": "./dist/index.js",
6
+ "module": "./dist/index.mjs",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.mjs",
12
+ "require": "./dist/index.js"
13
+ },
14
+ "./hello-world": {
15
+ "types": "./dist/hello-world.d.ts",
16
+ "import": "./dist/hello-world.mjs",
17
+ "require": "./dist/hello-world.js"
18
+ },
19
+ "./broadcast-player": {
20
+ "types": "./dist/broadcast-player.d.ts",
21
+ "import": "./dist/broadcast-player.mjs",
22
+ "require": "./dist/broadcast-player.js"
23
+ },
24
+ "./styles.css": "./dist/styles.css"
25
+ },
26
+ "files": [
27
+ "dist"
28
+ ],
29
+ "scripts": {
30
+ "build:js": "tsup",
31
+ "build:css": "npx tailwindcss -i ./src/styles.css -o ./dist/styles.css --minify",
32
+ "build": "yarn build:js && yarn build:css",
33
+ "dev": "tsup --watch",
34
+ "typecheck": "tsc --noEmit",
35
+ "prepublishOnly": "yarn typecheck && yarn build",
36
+ "prepack": "yarn build",
37
+ "publish:beta": "npm publish --tag beta --access public",
38
+ "publish:latest": "npm publish --access public",
39
+ "pack:local": "npm pack",
40
+ "version:patch": "npm version patch",
41
+ "version:minor": "npm version minor",
42
+ "version:major": "npm version major"
43
+ },
44
+ "keywords": [
45
+ "dialtribe",
46
+ "react",
47
+ "sdk",
48
+ "media",
49
+ "broadcasting",
50
+ "video",
51
+ "audio",
52
+ "hls",
53
+ "streaming",
54
+ "player",
55
+ "api-client"
56
+ ],
57
+ "author": "DialTribe",
58
+ "license": "MIT",
59
+ "repository": {
60
+ "type": "git",
61
+ "url": "git+https://github.com/dialtribe/react-sdk.git"
62
+ },
63
+ "homepage": "https://github.com/dialtribe/react-sdk#readme",
64
+ "publishConfig": {
65
+ "access": "public"
66
+ },
67
+ "peerDependencies": {
68
+ "react": "^18.0.0 || ^19.0.0",
69
+ "react-dom": "^18.0.0 || ^19.0.0"
70
+ },
71
+ "devDependencies": {
72
+ "@types/node": "^25.0.3",
73
+ "@types/react": "^18.2.0",
74
+ "@types/react-dom": "^18.2.0",
75
+ "react": "^18.2.0",
76
+ "react-dom": "^18.2.0",
77
+ "tailwindcss": "^3.4.0",
78
+ "tsup": "^8.0.1",
79
+ "typescript": "^5.3.3"
80
+ },
81
+ "dependencies": {
82
+ "react-player": "^3.4.0"
83
+ }
84
+ }