@acrobits/ipc-sdk 0.0.14
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 +55 -0
- package/docs/.nojekyll +1 -0
- package/docs/assets/highlight.css +78 -0
- package/docs/assets/main.js +58 -0
- package/docs/assets/search.js +1 -0
- package/docs/assets/style.css +1367 -0
- package/docs/classes/IPCManager.html +421 -0
- package/docs/enums/IPCEvents.html +91 -0
- package/docs/index.html +70 -0
- package/docs/interfaces/BaseContactItem.html +98 -0
- package/docs/interfaces/CloudUsernameContactItem.html +109 -0
- package/docs/interfaces/DetailedContactItem.html +146 -0
- package/docs/interfaces/ILogger.html +151 -0
- package/docs/interfaces/SipUriContactItem.html +109 -0
- package/docs/modules.html +76 -0
- package/docs/types/ContactItem.html +57 -0
- package/docs/types/ContactLabel.html +57 -0
- package/docs/types/HostType.html +58 -0
- package/docs/types/IPCContext.html +60 -0
- package/docs/types/IpcProtocolVersion.html +57 -0
- package/docs/types/UnsubscribeCallback.html +65 -0
- package/lib/index.d.ts +193 -0
- package/lib/ipc-sdk.js +3062 -0
- package/lib/ipc-sdk.js.map +1 -0
- package/lib/ipc-sdk.umd.cjs +5 -0
- package/lib/ipc-sdk.umd.cjs.map +1 -0
- package/lib/tsdoc-metadata.json +11 -0
- package/package.json +64 -0
package/package.json
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@acrobits/ipc-sdk",
|
|
3
|
+
"version": "0.0.14",
|
|
4
|
+
"description": "An SDK for the Acrobits IPC protocol",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"files": [
|
|
7
|
+
"lib",
|
|
8
|
+
"docs"
|
|
9
|
+
],
|
|
10
|
+
"main": "./lib/ipc-sdk.umd.cjs",
|
|
11
|
+
"module": "./lib/ipc-sdk.js",
|
|
12
|
+
"typings": "./lib/index.d.ts",
|
|
13
|
+
"exports": {
|
|
14
|
+
".": {
|
|
15
|
+
"import": "./lib/ipc-sdk.js",
|
|
16
|
+
"require": "./lib/ipc-sdk.umd.cjs",
|
|
17
|
+
"types": "./lib/index.d.ts"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "git@gitlab.acrobits.cz:shared/web-packages.git"
|
|
23
|
+
},
|
|
24
|
+
"keywords": [
|
|
25
|
+
"ipc",
|
|
26
|
+
"protocol",
|
|
27
|
+
"acrobits"
|
|
28
|
+
],
|
|
29
|
+
"author": {
|
|
30
|
+
"name": "Uzair Sajid",
|
|
31
|
+
"email": "uzee@uzeeinc.net",
|
|
32
|
+
"url": "https://uzee.dev"
|
|
33
|
+
},
|
|
34
|
+
"license": "MIT",
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"rxjs": "^7.8.1"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@acrobits/log-helper": "2.0.0-alpha.4",
|
|
40
|
+
"@microsoft/api-documenter": "^7.22.30",
|
|
41
|
+
"@microsoft/api-extractor": "^7.36.3",
|
|
42
|
+
"rimraf": "^5.0.1",
|
|
43
|
+
"typedoc": "^0.24.8",
|
|
44
|
+
"typescript": "^5.1.6",
|
|
45
|
+
"vite": "^4.4.6",
|
|
46
|
+
"vite-plugin-dts": "^3.3.1",
|
|
47
|
+
"@acrobits/ipc-protocol": "^1.2.1"
|
|
48
|
+
},
|
|
49
|
+
"optionalDependencies": {
|
|
50
|
+
"@acrobits/log-helper": "2.0.0-alpha.5"
|
|
51
|
+
},
|
|
52
|
+
"lint-staged": {
|
|
53
|
+
"src/**/*.{ts,tsx,js,jsx,cjs,mjs,cts,mts,css,md,json,yml}": "prettier --write"
|
|
54
|
+
},
|
|
55
|
+
"scripts": {
|
|
56
|
+
"dev": "vite",
|
|
57
|
+
"compile": "tsc && vite build",
|
|
58
|
+
"build": "pnpm run compile && pnpm run api && pnpm run doc",
|
|
59
|
+
"preview": "vite preview",
|
|
60
|
+
"api": "rimraf ./dist && api-extractor run --local",
|
|
61
|
+
"api-doc": "api-documenter markdown --input-folder temp --output-folder docs-md",
|
|
62
|
+
"doc": "typedoc && pnpm run api-doc"
|
|
63
|
+
}
|
|
64
|
+
}
|