cosmic-ai-genius 0.3.6

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.
@@ -0,0 +1,29 @@
1
+ <svg width="72" height="72" viewBox="0 0 72 72" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g filter="url(#filter0_di_8881_16058)">
3
+ <rect x="15" y="15" width="42" height="42" rx="21" fill="url(#paint0_linear_8881_16058)"/>
4
+ <path d="M36 26.8389C36 26.8521 36 26.8653 36 26.8785C36.0037 33.425 37.847 35.9999 45.1611 35.9999C37.847 35.9999 36.0037 38.5748 36 45.1214C35.9964 38.5748 34.1531 35.9999 26.839 35.9999C34.1531 35.9999 35.9964 33.425 36 26.8785C36 26.8653 36 26.8521 36 26.8389Z" fill="white" stroke="white" stroke-width="1.83221" stroke-linejoin="round"/>
5
+ </g>
6
+ <defs>
7
+ <filter id="filter0_di_8881_16058" x="0.342281" y="0.342281" width="71.3154" height="71.3154" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
8
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
9
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
10
+ <feMorphology radius="3.66443" operator="dilate" in="SourceAlpha" result="effect1_dropShadow_8881_16058"/>
11
+ <feOffset/>
12
+ <feGaussianBlur stdDeviation="5.49664"/>
13
+ <feComposite in2="hardAlpha" operator="out"/>
14
+ <feColorMatrix type="matrix" values="0 0 0 0 0.912935 0 0 0 0 0.906907 0 0 0 0 1 0 0 0 1 0"/>
15
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_8881_16058"/>
16
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_8881_16058" result="shape"/>
17
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
18
+ <feOffset/>
19
+ <feGaussianBlur stdDeviation="1.32181"/>
20
+ <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
21
+ <feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0"/>
22
+ <feBlend mode="normal" in2="shape" result="effect2_innerShadow_8881_16058"/>
23
+ </filter>
24
+ <linearGradient id="paint0_linear_8881_16058" x1="0.627795" y1="-4.94274" x2="59.9932" y2="66.8944" gradientUnits="userSpaceOnUse">
25
+ <stop stop-color="#9747FF"/>
26
+ <stop offset="1" stop-color="#1B85FF"/>
27
+ </linearGradient>
28
+ </defs>
29
+ </svg>
Binary file
package/package.json ADDED
@@ -0,0 +1,81 @@
1
+ {
2
+ "name": "cosmic-ai-genius",
3
+ "private": false,
4
+ "version": "0.3.6",
5
+ "type": "module",
6
+ "description": "A powerful, customizable AI chatbot SDK for React applications with voice capabilities and modern UI design",
7
+ "keywords": [
8
+ "react",
9
+ "chatbot",
10
+ "ai",
11
+ "voice",
12
+ "typescript",
13
+ "sdk",
14
+ "cosmic",
15
+ "genius",
16
+ "conversational-ai"
17
+ ],
18
+ "author": {
19
+ "name": "Cosmic AI Team",
20
+ "email": "support@cosmicai.com"
21
+ },
22
+ "license": "MIT",
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "https://github.com/cosmic-ai/genius-sdk.git"
26
+ },
27
+ "bugs": {
28
+ "url": "https://github.com/cosmic-ai/genius-sdk/issues"
29
+ },
30
+ "homepage": "https://github.com/cosmic-ai/genius-sdk#readme",
31
+ "main": "./dist-sdk/genius-sdk.umd.js",
32
+ "module": "./dist-sdk/genius-sdk.es.js",
33
+ "types": "./dist-sdk/index.d.ts",
34
+ "exports": {
35
+ ".": {
36
+ "import": "./dist-sdk/genius-sdk.es.js",
37
+ "require": "./dist-sdk/genius-sdk.umd.js"
38
+ },
39
+ "./css": "./dist-sdk/cosmic-ai-genius.css"
40
+ },
41
+ "files": [
42
+ "dist-sdk",
43
+ "README.md",
44
+ "LICENSE"
45
+ ],
46
+ "engines": {
47
+ "node": ">=16.0.0"
48
+ },
49
+ "peerDependencies": {
50
+ "react": "^18.0.0 || ^19.0.0",
51
+ "react-dom": "^18.0.0 || ^19.0.0"
52
+ },
53
+ "scripts": {
54
+ "dev": "vite",
55
+ "build": "tsc -b && vite build",
56
+ "build:sdk": "tsc -b && vite build --config vite.sdk.config.ts",
57
+ "lint": "eslint .",
58
+ "preview": "vite preview"
59
+ },
60
+ "dependencies": {
61
+ "@types/marked": "^5.0.2",
62
+ "highcharts": "^11.4.6",
63
+ "highcharts-react-official": "^3.2.1",
64
+ "marked": "^15.0.12",
65
+ "react": "^19.1.0",
66
+ "react-dom": "^19.1.0"
67
+ },
68
+ "devDependencies": {
69
+ "@eslint/js": "^9.25.0",
70
+ "@types/react": "^19.1.8",
71
+ "@types/react-dom": "^19.1.6",
72
+ "@vitejs/plugin-react": "^4.4.1",
73
+ "eslint": "^9.25.0",
74
+ "eslint-plugin-react-hooks": "^5.2.0",
75
+ "eslint-plugin-react-refresh": "^0.4.19",
76
+ "globals": "^16.0.0",
77
+ "typescript": "~5.8.3",
78
+ "typescript-eslint": "^8.30.1",
79
+ "vite": "^6.3.5"
80
+ }
81
+ }