@tmsoft/webphone 1.0.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,84 @@
1
+ {
2
+ "name": "@tmsoft/webphone",
3
+ "version": "1.0.0",
4
+ "private": false,
5
+ "type": "module",
6
+ "files": [
7
+ "dist",
8
+ "index.d.ts"
9
+ ],
10
+ "main": "./dist/webphone.cjs.js",
11
+ "module": "./dist/webphone.es.js",
12
+ "browser": "./dist/webphone.umd.js",
13
+ "types": "./dist/index.d.ts",
14
+ "exports": {
15
+ "browser": "./dist/webphone.umd.js",
16
+ "import": "./dist/webphone.es.js",
17
+ "require": "./dist/webphone.cjs.js"
18
+ },
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "https://github.com/alternaus/webphone-lib"
22
+ },
23
+ "publishConfig": {
24
+ "access": "public"
25
+ },
26
+ "scripts": {
27
+ "dev": "vite --host",
28
+ "build": "run-p type-check \"build-only {@}\" --",
29
+ "preview": "vite preview",
30
+ "test:unit": "vitest",
31
+ "test:e2e": "playwright test",
32
+ "build-only": "vite build",
33
+ "type-check": "vue-tsc --build",
34
+ "lint": "eslint . --fix",
35
+ "format": "prettier --write src/",
36
+ "publish:verdaccio": "npm publish --registry http://localhost:4873/",
37
+ "prepare": "npm run build",
38
+ "publish": "npm publish --access public"
39
+ },
40
+ "peerDependencies": {
41
+ "vue": "^3.5.13"
42
+ },
43
+ "dependencies": {
44
+ "@primeuix/themes": "^1.0.0-rc.1",
45
+ "@tailwindcss/vite": "^4.0.8",
46
+ "jssip": "^3.10.1",
47
+ "lodash": "^4.17.21",
48
+ "pinia": "^3.0.1",
49
+ "pinia-plugin-persistedstate": "^4.2.0",
50
+ "primeicons": "^7.0.0",
51
+ "primevue": "^4.2.5",
52
+ "tailwindcss": "^4.0.8",
53
+ "vite-plugin-css-injected-by-js": "^3.5.2",
54
+ "vite-svg-loader": "^5.1.0",
55
+ "vue": "^3.5.13"
56
+ },
57
+ "devDependencies": {
58
+ "@playwright/test": "^1.50.1",
59
+ "@tsconfig/node22": "^22.0.0",
60
+ "@types/jsdom": "^21.1.7",
61
+ "@types/lodash": "^4.17.15",
62
+ "@types/node": "^22.13.4",
63
+ "@vitejs/plugin-vue": "^5.2.1",
64
+ "@vitest/eslint-plugin": "1.1.31",
65
+ "@vue/eslint-config-prettier": "^10.2.0",
66
+ "@vue/eslint-config-typescript": "^14.4.0",
67
+ "@vue/test-utils": "^2.4.6",
68
+ "@vue/tsconfig": "^0.7.0",
69
+ "eslint": "^9.20.1",
70
+ "eslint-plugin-playwright": "^2.2.0",
71
+ "eslint-plugin-vue": "^9.32.0",
72
+ "jiti": "^2.4.2",
73
+ "jsdom": "^26.0.0",
74
+ "npm-run-all2": "^7.0.2",
75
+ "prettier": "^3.5.1",
76
+ "typescript": "~5.7.3",
77
+ "vite": "^6.1.0",
78
+ "vite-plugin-dts": "^4.5.0",
79
+ "vite-plugin-qrcode": "^0.2.4",
80
+ "vite-plugin-vue-devtools": "^7.7.2",
81
+ "vitest": "^3.0.5",
82
+ "vue-tsc": "^2.2.2"
83
+ }
84
+ }