@fuzionx/helpdesk 0.1.72

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,56 @@
1
+ {
2
+ "name": "@fuzionx/helpdesk",
3
+ "version": "0.1.72",
4
+ "type": "module",
5
+ "description": "FuzionX 고객 상담 위젯 — Vue 3 Plugin + Vanilla JS 지원",
6
+ "main": "dist/helpdesk.umd.js",
7
+ "module": "dist/helpdesk.es.js",
8
+ "types": "types/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "import": "./dist/helpdesk.es.js",
12
+ "require": "./dist/helpdesk.umd.js"
13
+ },
14
+ "./vue": {
15
+ "import": "./dist/helpdesk-vue.es.js"
16
+ },
17
+ "./dist/helpdesk.css": "./dist/helpdesk.css"
18
+ },
19
+ "files": [
20
+ "dist/",
21
+ "types/"
22
+ ],
23
+ "scripts": {
24
+ "dev": "vite build --watch",
25
+ "build": "vite build",
26
+ "build:vue": "vite build --mode vue",
27
+ "build:vanilla": "vite build --mode vanilla"
28
+ },
29
+ "keywords": [
30
+ "helpdesk",
31
+ "chat",
32
+ "widget",
33
+ "fuzionx",
34
+ "customer-support",
35
+ "vue3",
36
+ "vanilla-js"
37
+ ],
38
+ "license": "MIT",
39
+ "repository": {
40
+ "type": "git",
41
+ "url": "https://github.com/saytohenry/fuzionx"
42
+ },
43
+ "peerDependencies": {
44
+ "vue": "^3.3.0"
45
+ },
46
+ "peerDependenciesMeta": {
47
+ "vue": {
48
+ "optional": true
49
+ }
50
+ },
51
+ "devDependencies": {
52
+ "@vitejs/plugin-vue": "^5.0.0",
53
+ "vite": "^6.0.0",
54
+ "vue": "^3.5.0"
55
+ }
56
+ }