@cimulate/copilot-widget 0.6.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/README.md +11 -0
- package/dist/cimulate-copilot-widget.css +1 -0
- package/dist/cimulate-copilot-widget.d.ts +126 -0
- package/dist/cimulate-copilot-widget.es.js +30684 -0
- package/dist/cimulate-copilot-widget.umd.js +75 -0
- package/package.json +101 -0
package/package.json
ADDED
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cimulate/copilot-widget",
|
|
3
|
+
"description": "A frontend SDK for Cimulate Copilot",
|
|
4
|
+
"version": "0.6.0",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"cimulate",
|
|
7
|
+
"copilot",
|
|
8
|
+
"widget",
|
|
9
|
+
"sdk",
|
|
10
|
+
"react"
|
|
11
|
+
],
|
|
12
|
+
"author": "support@cimulate.ai",
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"type": "module",
|
|
15
|
+
"files": [
|
|
16
|
+
"dist"
|
|
17
|
+
],
|
|
18
|
+
"sideEffects": [
|
|
19
|
+
"**/*.css"
|
|
20
|
+
],
|
|
21
|
+
"main": "./dist/cimulate-copilot-widget.umd.js",
|
|
22
|
+
"module": "./dist/cimulate-copilot-widget.es.js",
|
|
23
|
+
"types": "./dist/cimulate-copilot-widget.d.ts",
|
|
24
|
+
"exports": {
|
|
25
|
+
".": {
|
|
26
|
+
"import": {
|
|
27
|
+
"types": "./dist/cimulate-copilot-widget.d.ts",
|
|
28
|
+
"default": "./dist/cimulate-copilot-widget.es.js"
|
|
29
|
+
},
|
|
30
|
+
"require": {
|
|
31
|
+
"types": "./dist/cimulate-copilot-widget.d.ts",
|
|
32
|
+
"default": "./dist/cimulate-copilot-widget.umd.js"
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"./css": "./dist/cimulate-copilot-widget.css"
|
|
36
|
+
},
|
|
37
|
+
"scripts": {
|
|
38
|
+
"start": "vite --open --strictPort --port 3001",
|
|
39
|
+
"start:dev": "npm run start -- --debug",
|
|
40
|
+
"build": "tsc -b && vite build --mode production",
|
|
41
|
+
"lint": "npx prettier --check . && npx eslint .",
|
|
42
|
+
"lint:fix": "npx prettier --write . && npx eslint . --fix",
|
|
43
|
+
"preview": "npm run build -- --config vite.preview.config.ts && vite preview --open --strictPort --port 3001",
|
|
44
|
+
"test": "vitest run",
|
|
45
|
+
"test:ui": "vitest --ui",
|
|
46
|
+
"test:watch": "vitest"
|
|
47
|
+
},
|
|
48
|
+
"engines": {
|
|
49
|
+
"node": ">=22.15.0",
|
|
50
|
+
"npm": ">=10.9.2"
|
|
51
|
+
},
|
|
52
|
+
"dependencies": {
|
|
53
|
+
"@ark-ui/react": "~5.18.3",
|
|
54
|
+
"@cimulate/copilot-sdk": "~3.4.0",
|
|
55
|
+
"@cimulate/search-sdk": "~1.0.5",
|
|
56
|
+
"axios": "~1.11.0",
|
|
57
|
+
"clsx": "2.1.1",
|
|
58
|
+
"next-themes": "^0.4.6",
|
|
59
|
+
"react": "~18.3.1",
|
|
60
|
+
"react-dom": "~18.3.1",
|
|
61
|
+
"react-icons": "~5.5.0",
|
|
62
|
+
"react-markdown": "~10.1.0",
|
|
63
|
+
"rehype-raw": "~7.0.0",
|
|
64
|
+
"remark-gfm": "~4.0.1"
|
|
65
|
+
},
|
|
66
|
+
"peerDependencies": {
|
|
67
|
+
"react": "~18.3.1",
|
|
68
|
+
"react-dom": "~18.3.1"
|
|
69
|
+
},
|
|
70
|
+
"devDependencies": {
|
|
71
|
+
"@eslint/js": "~9.30.1",
|
|
72
|
+
"@testing-library/jest-dom": "~6.6.3",
|
|
73
|
+
"@testing-library/react": "~16.3.0",
|
|
74
|
+
"@testing-library/user-event": "~14.6.1",
|
|
75
|
+
"@types/node": "~22.15.0",
|
|
76
|
+
"@types/react": "~18.3.1",
|
|
77
|
+
"@types/react-dom": "~18.3.1",
|
|
78
|
+
"@typescript-eslint/parser": "~8.35.1",
|
|
79
|
+
"@vitejs/plugin-react": "~4.5.2",
|
|
80
|
+
"@vitest/coverage-v8": "~3.0.9",
|
|
81
|
+
"@vitest/ui": "~3.0.9",
|
|
82
|
+
"eslint": "~9.30.1",
|
|
83
|
+
"eslint-config-prettier": "~10.1.5",
|
|
84
|
+
"eslint-plugin-import": "~2.32.0",
|
|
85
|
+
"eslint-plugin-jsx-a11y": "~6.10.2",
|
|
86
|
+
"eslint-plugin-prettier": "~5.4.0",
|
|
87
|
+
"eslint-plugin-react-hooks": "~5.2.0",
|
|
88
|
+
"eslint-plugin-react-refresh": "~0.4.20",
|
|
89
|
+
"eslint-plugin-react-x": "~1.52.2",
|
|
90
|
+
"globals": "~16.3.0",
|
|
91
|
+
"immer": "~10.1.1",
|
|
92
|
+
"jsdom": "~26.1.0",
|
|
93
|
+
"prettier": "~3.6.2",
|
|
94
|
+
"typescript": "~5.8.3",
|
|
95
|
+
"typescript-eslint": "~8.35.1",
|
|
96
|
+
"use-immer": "~0.11.0",
|
|
97
|
+
"vite": "~7.0.3",
|
|
98
|
+
"vite-plugin-dts": "~4.5.4",
|
|
99
|
+
"vitest": "~3.0.9"
|
|
100
|
+
}
|
|
101
|
+
}
|