@bravophone/webphone 0.1.0 → 0.1.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
CHANGED
|
@@ -5,7 +5,7 @@ softphone aparece como uma janela flutuante arrastável, com as mesmas
|
|
|
5
5
|
funcionalidades da extensão de navegador.
|
|
6
6
|
|
|
7
7
|
```html
|
|
8
|
-
<script src="https://cdn.jsdelivr.net/npm/@bravophone/webphone"></script>
|
|
8
|
+
<script src="https://cdn.jsdelivr.net/npm/@bravophone/webphone@0.1"></script>
|
|
9
9
|
<script>
|
|
10
10
|
Bravophone.init({ token: 'TOKEN_DO_USUARIO' })
|
|
11
11
|
</script>
|
package/package.json
CHANGED
|
@@ -1,24 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bravophone/webphone",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Webphone BRAVOPHONE embutível em qualquer página web. Renderiza uma janela flutuante arrastável com todas as funcionalidades do softphone.",
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"module": "./dist/bravophone.js",
|
|
5
|
+
"main": "./dist/bravophone.umd.js",
|
|
6
|
+
"module": "./dist/bravophone.mjs",
|
|
8
7
|
"types": "./types/index.d.ts",
|
|
9
|
-
"unpkg": "./dist/bravophone.umd.
|
|
10
|
-
"jsdelivr": "./dist/bravophone.umd.
|
|
8
|
+
"unpkg": "./dist/bravophone.umd.js",
|
|
9
|
+
"jsdelivr": "./dist/bravophone.umd.js",
|
|
11
10
|
"exports": {
|
|
12
11
|
".": {
|
|
13
12
|
"types": "./types/index.d.ts",
|
|
14
|
-
"import": "./dist/bravophone.
|
|
15
|
-
"require": "./dist/bravophone.umd.
|
|
16
|
-
}
|
|
17
|
-
"./style.css": "./dist/bravophone.css"
|
|
13
|
+
"import": "./dist/bravophone.mjs",
|
|
14
|
+
"require": "./dist/bravophone.umd.js"
|
|
15
|
+
}
|
|
18
16
|
},
|
|
19
17
|
"files": [
|
|
20
18
|
"dist/*.js",
|
|
21
|
-
"dist/*.
|
|
19
|
+
"dist/*.mjs",
|
|
22
20
|
"types",
|
|
23
21
|
"README.md"
|
|
24
22
|
],
|
|
@@ -28,7 +26,7 @@
|
|
|
28
26
|
"dev": "node scripts/dev-server.mjs",
|
|
29
27
|
"build": "vite build",
|
|
30
28
|
"build:host": "npm run sync && vite build --config vite.host.config.js",
|
|
31
|
-
"test": "node scripts/smoke-shim.mjs && node scripts/smoke-geometry.mjs && node scripts/smoke-launcher.mjs",
|
|
29
|
+
"test": "node scripts/smoke-shim.mjs && node scripts/smoke-geometry.mjs && node scripts/smoke-launcher.mjs && node scripts/smoke-package.mjs",
|
|
32
30
|
"start": "node scripts/dev-server.mjs",
|
|
33
31
|
"audit:theme": "node scripts/audit-theme.mjs",
|
|
34
32
|
"prepublishOnly": "npm run build && npm test"
|
|
@@ -61,5 +59,5 @@
|
|
|
61
59
|
"engines": {
|
|
62
60
|
"node": ">=18"
|
|
63
61
|
},
|
|
64
|
-
"browser": "./dist/bravophone.umd.
|
|
62
|
+
"browser": "./dist/bravophone.umd.js"
|
|
65
63
|
}
|
|
File without changes
|
|
File without changes
|