@irisidea/kalrav-ai 1.0.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,108 @@
1
+ {
2
+ "name": "@irisidea/kalrav-ai",
3
+ "version": "1.0.0",
4
+ "description": "Kalrav AI chatbot widget for React, Next.js, Vue, Angular, and Vanilla JavaScript/TypeScript applications",
5
+ "main": "./dist/index.js",
6
+ "module": "./dist/index.mjs",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/index.mjs",
11
+ "require": "./dist/index.js",
12
+ "types": "./dist/index.d.ts"
13
+ },
14
+ "./react": {
15
+ "import": "./dist/react.mjs",
16
+ "require": "./dist/react.js",
17
+ "types": "./dist/react.d.ts"
18
+ },
19
+ "./nextjs": {
20
+ "import": "./dist/nextjs.mjs",
21
+ "require": "./dist/nextjs.js",
22
+ "types": "./dist/nextjs.d.ts"
23
+ },
24
+ "./vue": {
25
+ "import": "./dist/vue.mjs",
26
+ "require": "./dist/vue.js",
27
+ "types": "./dist/vue.d.ts"
28
+ },
29
+ "./angular": {
30
+ "import": "./dist/angular.mjs",
31
+ "require": "./dist/angular.js",
32
+ "types": "./dist/angular.d.ts"
33
+ }
34
+ },
35
+ "files": [
36
+ "dist",
37
+ "README.md",
38
+ "LICENSE"
39
+ ],
40
+ "scripts": {
41
+ "build": "tsup && npm run build:widget",
42
+ "build:widget": "webpack --mode production",
43
+ "dev": "tsup --watch"
44
+ },
45
+ "keywords": [
46
+ "chatbot",
47
+ "agent",
48
+ "AI Agent",
49
+ "widget",
50
+ "kalrav",
51
+ "ai",
52
+ "react",
53
+ "nextjs",
54
+ "vue",
55
+ "angular",
56
+ "javascript",
57
+ "typescript",
58
+ "chat",
59
+ "customer-support"
60
+ ],
61
+ "author": "Kalrav AI",
62
+ "license": "MIT",
63
+ "peerDependencies": {
64
+ "@angular/core": ">=12.0.0",
65
+ "react": ">=16.8.0",
66
+ "react-dom": ">=16.8.0",
67
+ "vue": ">=3.0.0"
68
+ },
69
+ "peerDependenciesMeta": {
70
+ "@angular/core": {
71
+ "optional": true
72
+ },
73
+ "react": {
74
+ "optional": true
75
+ },
76
+ "react-dom": {
77
+ "optional": true
78
+ },
79
+ "vue": {
80
+ "optional": true
81
+ }
82
+ },
83
+ "devDependencies": {
84
+ "@angular/common": "^17.3.12",
85
+ "@angular/core": "^17.0.0",
86
+ "@types/node": "^20.10.0",
87
+ "@types/react": "^18.2.0",
88
+ "@types/react-dom": "^18.2.0",
89
+ "react": "^18.2.0",
90
+ "react-dom": "^18.2.0",
91
+ "tsup": "^8.0.0",
92
+ "typescript": "^5.3.0",
93
+ "vue": "^3.3.0",
94
+ "webpack": "^5.103.0",
95
+ "webpack-cli": "^6.0.1"
96
+ },
97
+ "repository": {
98
+ "type": "git",
99
+ "url": "git+https://github.com/Irisideatechnologies/agent-widget-js.git"
100
+ },
101
+ "bugs": {
102
+ "url": "https://github.com/Irisideatechnologies/agent-widget-js/issues"
103
+ },
104
+ "homepage": "https://kalrav.ai",
105
+ "dependencies": {
106
+ "markdown-it": "^14.1.0"
107
+ }
108
+ }