roslib-ts 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 +3 -3
- package/package.json +9 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# roslib-ts
|
|
2
2
|
|
|
3
3
|
TypeScript-first ROSLIB implementation.
|
|
4
4
|
|
|
@@ -14,13 +14,13 @@ TypeScript-first ROSLIB implementation.
|
|
|
14
14
|
## Install
|
|
15
15
|
|
|
16
16
|
```bash
|
|
17
|
-
pnpm add
|
|
17
|
+
pnpm add roslib-ts
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
## Usage
|
|
21
21
|
|
|
22
22
|
```typescript
|
|
23
|
-
import { Ros, Topic } from '
|
|
23
|
+
import { Ros, Topic } from 'roslib-ts'
|
|
24
24
|
|
|
25
25
|
const ros = new Ros({
|
|
26
26
|
url: 'ws://localhost:9090'
|
package/package.json
CHANGED
|
@@ -1,12 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "roslib-ts",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "TypeScript-first ROSLIB implementation",
|
|
5
5
|
"author": "naviai",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"main": "dist/index.cjs.js",
|
|
8
8
|
"module": "dist/index.esm.js",
|
|
9
9
|
"types": "dist/index.d.ts",
|
|
10
|
+
"homepage": "https://github.com/cn1001wang/roslib-ts#readme",
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "git+https://github.com/cn1001wang/roslib-ts.git"
|
|
14
|
+
},
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://github.com/cn1001wang/roslib-ts/issues"
|
|
17
|
+
},
|
|
10
18
|
"exports": {
|
|
11
19
|
".": {
|
|
12
20
|
"import": "./dist/index.esm.js",
|