@aiden-voice/widget 0.0.0 → 0.1.1
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/LICENSE.md +17 -0
- package/README.md +301 -1
- package/dist/api/client.d.ts +14 -0
- package/dist/api/sse.d.ts +17 -0
- package/dist/components/App.d.ts +4 -0
- package/dist/components/Composer.d.ts +8 -0
- package/dist/components/ErrorBanner.d.ts +3 -0
- package/dist/components/Launcher.d.ts +7 -0
- package/dist/components/MessageFeedback.d.ts +10 -0
- package/dist/components/MessageList.d.ts +10 -0
- package/dist/components/Panel.d.ts +7 -0
- package/dist/config.d.ts +3 -0
- package/dist/controller.d.ts +45 -0
- package/dist/index.d.ts +3 -0
- package/dist/markdown/render.d.ts +2 -0
- package/dist/markdown/reveal.d.ts +6 -0
- package/dist/markdown/tokenizer.d.ts +23 -0
- package/dist/mount.d.ts +2 -0
- package/dist/storage.d.ts +3 -0
- package/dist/theme.d.ts +3 -0
- package/dist/types.d.ts +12 -0
- package/dist/version.d.ts +1 -0
- package/dist/widget.iife.js +6 -0
- package/dist/widget.js +1193 -0
- package/package.json +53 -5
package/package.json
CHANGED
|
@@ -1,8 +1,56 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aiden-voice/widget",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"repository": {
|
|
7
|
-
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"packageManager": "pnpm@11.9.0",
|
|
5
|
+
"description": "Embeddable chat widget for whoo-aiden",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/whoo-ai/whoo-aiden-widget.git"
|
|
9
|
+
},
|
|
10
|
+
"type": "module",
|
|
11
|
+
"private": false,
|
|
12
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
13
|
+
"main": "./dist/widget.js",
|
|
14
|
+
"module": "./dist/widget.js",
|
|
15
|
+
"types": "./dist/index.d.ts",
|
|
16
|
+
"sideEffects": false,
|
|
17
|
+
"files": [
|
|
18
|
+
"dist",
|
|
19
|
+
"LICENSE.md"
|
|
20
|
+
],
|
|
21
|
+
"keywords": [],
|
|
22
|
+
"author": "",
|
|
23
|
+
"scripts": {
|
|
24
|
+
"build": "vite build && vite build --config vite.iife.config.ts",
|
|
25
|
+
"build:watch": "concurrently -n esm,iife \"vite build --watch\" \"vite build --config vite.iife.config.ts --watch\"",
|
|
26
|
+
"dev": "vite",
|
|
27
|
+
"lint": "biome check .",
|
|
28
|
+
"format": "biome format --write .",
|
|
29
|
+
"typecheck": "tsc --noEmit",
|
|
30
|
+
"test": "vitest run",
|
|
31
|
+
"test:watch": "vitest",
|
|
32
|
+
"e2e": "playwright test"
|
|
33
|
+
},
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"preact": "^10.29.8"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@biomejs/biome": "^2.5.10",
|
|
39
|
+
"@playwright/test": "^1.62.1",
|
|
40
|
+
"@preact/preset-vite": "^2.10.6",
|
|
41
|
+
"@testing-library/jest-dom": "^7.0.1",
|
|
42
|
+
"@testing-library/preact": "^3.2.4",
|
|
43
|
+
"@types/node": "^26.2.0",
|
|
44
|
+
"@typescript/typescript6": "^6.0.2",
|
|
45
|
+
"axe-core": "^4.13.0",
|
|
46
|
+
"concurrently": "^10.0.5",
|
|
47
|
+
"http-server": "^14.1.1",
|
|
48
|
+
"jsdom": "^30.0.1",
|
|
49
|
+
"typescript": "^7.0.2",
|
|
50
|
+
"vite": "^8.2.2",
|
|
51
|
+
"vite-plugin-dts": "^5.0.3",
|
|
52
|
+
"vitest": "^4.1.11",
|
|
53
|
+
"vitest-axe": "^0.1.0",
|
|
54
|
+
"yaml": "^2.9.1"
|
|
55
|
+
}
|
|
8
56
|
}
|