@bacca2095/webphone 0.0.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/README.md +73 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +19288 -0
- package/dist/src/components/WebPhone.vue.d.ts +21 -0
- package/dist/src/components/panels/CalendarPanel.vue.d.ts +7 -0
- package/dist/src/components/panels/ContactsPanel.vue.d.ts +11 -0
- package/dist/src/components/panels/HistoryPanel.vue.d.ts +9 -0
- package/dist/src/components/panels/NotesPanel.vue.d.ts +6 -0
- package/dist/src/components/webphone/AudioSettings.vue.d.ts +3 -0
- package/dist/src/components/webphone/CallControls.vue.d.ts +28 -0
- package/dist/src/components/webphone/CallDisplay.vue.d.ts +7 -0
- package/dist/src/components/webphone/ChannelTabs.vue.d.ts +12 -0
- package/dist/src/components/webphone/DialSection.vue.d.ts +19 -0
- package/dist/src/components/webphone/PanelToggle.vue.d.ts +13 -0
- package/dist/src/components/webphone/PhoneHeader.vue.d.ts +23 -0
- package/dist/src/composables/useAudioDevices.d.ts +24 -0
- package/dist/src/composables/useContacts.d.ts +17 -0
- package/dist/src/composables/useSipConfig.d.ts +5 -0
- package/dist/src/composables/useSounds.d.ts +4 -0
- package/dist/src/composables/useWebPhone.d.ts +46 -0
- package/dist/src/core/db.d.ts +13 -0
- package/dist/src/index.d.ts +13 -0
- package/dist/src/stores/webphone.d.ts +293 -0
- package/dist/src/types/index.d.ts +52 -0
- package/dist/src/webphone.ce.d.ts +5 -0
- package/dist/style.css +2 -0
- package/dist/webphone.es.js +25962 -0
- package/dist/webphone.iife.js +58 -0
- package/package.json +91 -0
package/package.json
ADDED
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@bacca2095/webphone",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "A Vue 3 webphone component library",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"import": "./dist/index.js"
|
|
14
|
+
},
|
|
15
|
+
"./style.css": "./dist/style.css",
|
|
16
|
+
"./webcomponent": {
|
|
17
|
+
"import": "./dist/webphone.es.js"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"main": "./dist/index.js",
|
|
21
|
+
"types": "./dist/index.d.ts",
|
|
22
|
+
"sideEffects": [
|
|
23
|
+
"*.css"
|
|
24
|
+
],
|
|
25
|
+
"scripts": {
|
|
26
|
+
"dev": "vite",
|
|
27
|
+
"build": "run-p type-check \"build-only {@}\" --",
|
|
28
|
+
"build:wc": "vite build --config vite.wc.config.ts",
|
|
29
|
+
"build:all": "run-s build build:wc",
|
|
30
|
+
"build:demo": "vite build --config vite.demo.config.ts",
|
|
31
|
+
"preview": "vite preview",
|
|
32
|
+
"test:unit": "vitest",
|
|
33
|
+
"build-only": "vite build",
|
|
34
|
+
"type-check": "vue-tsc --build",
|
|
35
|
+
"lint": "run-s lint:*",
|
|
36
|
+
"lint:oxlint": "oxlint . --fix",
|
|
37
|
+
"lint:eslint": "eslint . --fix --cache",
|
|
38
|
+
"format": "oxfmt src/"
|
|
39
|
+
},
|
|
40
|
+
"peerDependencies": {
|
|
41
|
+
"pinia": "^3.0.0",
|
|
42
|
+
"vue": "^3.5.0"
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@internationalized/date": "^3.12.2",
|
|
46
|
+
"@lucide/vue": "^1.17.0",
|
|
47
|
+
"@vueuse/core": "14.3.0",
|
|
48
|
+
"class-variance-authority": "0.7.1",
|
|
49
|
+
"clsx": "2.1.1",
|
|
50
|
+
"jssip": "3.13.8",
|
|
51
|
+
"reka-ui": "2.9.7",
|
|
52
|
+
"tailwind-merge": "3.6.0"
|
|
53
|
+
},
|
|
54
|
+
"devDependencies": {
|
|
55
|
+
"@tailwindcss/vite": "4.3.0",
|
|
56
|
+
"@tsconfig/node24": "24.0.4",
|
|
57
|
+
"@types/jsdom": "28.0.3",
|
|
58
|
+
"@types/node": "24.12.4",
|
|
59
|
+
"@vitejs/plugin-vue": "6.0.7",
|
|
60
|
+
"@vitest/eslint-plugin": "1.6.17",
|
|
61
|
+
"@vue/eslint-config-typescript": "14.7.0",
|
|
62
|
+
"@vue/test-utils": "2.4.10",
|
|
63
|
+
"@vue/tsconfig": "0.9.1",
|
|
64
|
+
"eslint": "10.4.0",
|
|
65
|
+
"eslint-config-prettier": "10.1.8",
|
|
66
|
+
"eslint-plugin-oxlint": "1.60.0",
|
|
67
|
+
"eslint-plugin-vue": "10.8.0",
|
|
68
|
+
"jiti": "2.7.0",
|
|
69
|
+
"jsdom": "29.1.1",
|
|
70
|
+
"npm-run-all2": "8.0.4",
|
|
71
|
+
"oxfmt": "0.45.0",
|
|
72
|
+
"oxlint": "1.60.0",
|
|
73
|
+
"pinia": "3.0.4",
|
|
74
|
+
"tailwindcss": "4.3.0",
|
|
75
|
+
"tw-animate-css": "1.4.0",
|
|
76
|
+
"typescript": "6.0.3",
|
|
77
|
+
"vite": "8.0.14",
|
|
78
|
+
"vite-plugin-dts": "5.0.1",
|
|
79
|
+
"vite-plugin-vue-devtools": "8.1.2",
|
|
80
|
+
"vitest": "4.1.7",
|
|
81
|
+
"vue": "3.5.34",
|
|
82
|
+
"vue-tsc": "3.3.1"
|
|
83
|
+
},
|
|
84
|
+
"publishConfig": {
|
|
85
|
+
"access": "public",
|
|
86
|
+
"provenance": true
|
|
87
|
+
},
|
|
88
|
+
"engines": {
|
|
89
|
+
"node": ">=24.0.0"
|
|
90
|
+
}
|
|
91
|
+
}
|