@aiden-voice/widget 0.0.0 → 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.
package/package.json CHANGED
@@ -1,8 +1,55 @@
1
1
  {
2
2
  "name": "@aiden-voice/widget",
3
- "version": "0.0.0",
4
- "description": "Placeholder release of the Aiden chat widget. Real releases start at 0.1.0 and are published from GitHub Actions via trusted publishing.",
3
+ "version": "0.1.0",
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,
5
12
  "license": "UNLICENSED",
6
- "repository": { "type": "git", "url": "https://github.com/whoo-ai/whoo-aiden-widget" },
7
- "files": ["README.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
+ ],
20
+ "keywords": [],
21
+ "author": "",
22
+ "scripts": {
23
+ "build": "vite build && vite build --config vite.iife.config.ts",
24
+ "build:watch": "concurrently -n esm,iife \"vite build --watch\" \"vite build --config vite.iife.config.ts --watch\"",
25
+ "dev": "vite",
26
+ "lint": "biome check .",
27
+ "format": "biome format --write .",
28
+ "typecheck": "tsc --noEmit",
29
+ "test": "vitest run",
30
+ "test:watch": "vitest",
31
+ "e2e": "playwright test"
32
+ },
33
+ "dependencies": {
34
+ "preact": "^10.29.8"
35
+ },
36
+ "devDependencies": {
37
+ "@biomejs/biome": "^2.5.10",
38
+ "@playwright/test": "^1.62.1",
39
+ "@preact/preset-vite": "^2.10.6",
40
+ "@testing-library/jest-dom": "^7.0.1",
41
+ "@testing-library/preact": "^3.2.4",
42
+ "@types/node": "^26.2.0",
43
+ "@typescript/typescript6": "^6.0.2",
44
+ "axe-core": "^4.13.0",
45
+ "concurrently": "^10.0.5",
46
+ "http-server": "^14.1.1",
47
+ "jsdom": "^30.0.1",
48
+ "typescript": "^7.0.2",
49
+ "vite": "^8.2.2",
50
+ "vite-plugin-dts": "^5.0.3",
51
+ "vitest": "^4.1.11",
52
+ "vitest-axe": "^0.1.0",
53
+ "yaml": "^2.9.1"
54
+ }
8
55
  }