@streamoid/photogenix-chat 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.
Files changed (3) hide show
  1. package/dist/index.d.ts +42 -0
  2. package/dist/index.js +34776 -0
  3. package/package.json +38 -0
package/package.json ADDED
@@ -0,0 +1,38 @@
1
+ {
2
+ "name": "@streamoid/photogenix-chat",
3
+ "version": "0.1.0",
4
+ "description": "Photogenix editor components for the Streamoid chat host — packaged as a Web Component with React 19 bundled internally",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist"
17
+ ],
18
+ "scripts": {
19
+ "build": "tsup",
20
+ "prepublishOnly": "npm run build"
21
+ },
22
+ "dependencies": {
23
+ "react": "^19.1.0",
24
+ "react-dom": "^19.1.0",
25
+ "react-router-dom": "^7.10.1"
26
+ },
27
+ "devDependencies": {
28
+ "@streamoid/chat-component-types": "^0.1.0",
29
+ "@types/react": "^19.0.0",
30
+ "@types/react-dom": "^19.0.0",
31
+ "tsup": "^8.0.0",
32
+ "typescript": "^5.0.0"
33
+ },
34
+ "license": "ISC",
35
+ "publishConfig": {
36
+ "access": "public"
37
+ }
38
+ }