@pocketping/widget 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 ADDED
@@ -0,0 +1,43 @@
1
+ {
2
+ "name": "@pocketping/widget",
3
+ "version": "0.1.0",
4
+ "description": "Embeddable chat widget for PocketPing",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.mjs",
7
+ "browser": "dist/index.global.js",
8
+ "types": "dist/index.d.ts",
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "scripts": {
13
+ "build": "tsup src/index.ts --format cjs,esm,iife --global-name PocketPing --dts",
14
+ "dev": "tsup src/index.ts --format iife --global-name PocketPing --watch",
15
+ "test": "vitest"
16
+ },
17
+ "dependencies": {
18
+ "preact": "^10.19.0"
19
+ },
20
+ "devDependencies": {
21
+ "@preact/preset-vite": "^2.10.2",
22
+ "@testing-library/preact": "^3.2.4",
23
+ "@vitest/coverage-v8": "^1.6.1",
24
+ "jsdom": "^27.4.0",
25
+ "tsup": "^8.0.0",
26
+ "typescript": "^5.3.0",
27
+ "vitest": "^1.2.0"
28
+ },
29
+ "keywords": [
30
+ "chat",
31
+ "widget",
32
+ "support",
33
+ "customer-service",
34
+ "telegram",
35
+ "notifications"
36
+ ],
37
+ "license": "MIT",
38
+ "repository": {
39
+ "type": "git",
40
+ "url": "https://github.com/Ruwad-io/pocketping.git",
41
+ "directory": "packages/widget"
42
+ }
43
+ }