@deeptrekker/api-channels 0.1.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/dist/index.es.js +1 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -0
- package/package.json +35 -0
- package/readme.md +23 -0
package/dist/index.es.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
console.log("Test");
|
package/dist/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../src/index.ts"],"sourcesContent":["console.log(\"Test\");\n"],"names":["console","log"],"mappings":"aAAAA,QAAQC,IAAI"}
|
package/package.json
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@deeptrekker/api-channels",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"module": "dist/index.es.js",
|
|
8
|
+
"files": [
|
|
9
|
+
"LICENSE.md",
|
|
10
|
+
"readme.md",
|
|
11
|
+
"dist/*"
|
|
12
|
+
],
|
|
13
|
+
"scripts": {
|
|
14
|
+
"build": "rollup -c"
|
|
15
|
+
},
|
|
16
|
+
"dependencies": {
|
|
17
|
+
"@microsoft/signalr": "^7.0.3",
|
|
18
|
+
"lodash": "^4.17.21"
|
|
19
|
+
},
|
|
20
|
+
"devDependencies": {
|
|
21
|
+
"@types/lodash": "^4.14.191",
|
|
22
|
+
"@babel/core": "^7.18.13",
|
|
23
|
+
"@rollup/plugin-commonjs": "^22.0.2",
|
|
24
|
+
"@rollup/plugin-node-resolve": "^13.3.0",
|
|
25
|
+
"@rollup/plugin-typescript": "^8.4.0",
|
|
26
|
+
"semver-compare-cli": "^2.0.0",
|
|
27
|
+
"rollup": "^2.78.1",
|
|
28
|
+
"rollup-plugin-dts": "^4.2.2",
|
|
29
|
+
"rollup-plugin-ignore": "^1.0.10",
|
|
30
|
+
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
31
|
+
"rollup-plugin-terser": "^7.0.2",
|
|
32
|
+
"typescript": "^4.9.5",
|
|
33
|
+
"tslib": "^2.5.0"
|
|
34
|
+
}
|
|
35
|
+
}
|
package/readme.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Deep Trekker API Channels Library
|
|
2
|
+
|
|
3
|
+
## Overview
|
|
4
|
+
|
|
5
|
+
This library enables developers to easily connect to Deep Trekker devices via
|
|
6
|
+
WebRTC and Signaling. It is comprised of a single endpoint to facilitate
|
|
7
|
+
connection management.
|
|
8
|
+
|
|
9
|
+
## Pre-requisites
|
|
10
|
+
|
|
11
|
+
To begin using this library, we require that you set up a compatible
|
|
12
|
+
TypeScript/Javascript project.
|
|
13
|
+
|
|
14
|
+
## 📦 Installation
|
|
15
|
+
|
|
16
|
+
1. Open your project
|
|
17
|
+
1. Run
|
|
18
|
+
|
|
19
|
+
npm install @deeptrekker/api-channels
|
|
20
|
+
|
|
21
|
+
### (Internal)
|
|
22
|
+
|
|
23
|
+
## Usage
|