@foxglove/extension 2.4.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/README.md +9 -0
- package/package.json +24 -0
- package/src/index.ts +1 -0
package/README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# Foxglove Extension API
|
|
2
|
+
|
|
3
|
+
This package contains type definitions for writing [Foxglove](https://foxglove.dev/) extensions.
|
|
4
|
+
|
|
5
|
+
See https://docs.foxglove.dev/docs/visualization/extensions/introduction
|
|
6
|
+
|
|
7
|
+
## Stay in touch
|
|
8
|
+
|
|
9
|
+
Join us in [Slack](https://foxglove.dev/slack) to ask questions, share feedback, and stay up to date on what our team is working on.
|
package/package.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@foxglove/extension",
|
|
3
|
+
"version": "2.4.0",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Foxglove Technologies",
|
|
7
|
+
"email": "support@foxglove.dev"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://foxglove.dev/",
|
|
10
|
+
"main": "./src/index.ts",
|
|
11
|
+
"files": [
|
|
12
|
+
"src"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"prepack": "tsc -b tsconfig.json"
|
|
16
|
+
},
|
|
17
|
+
"devDependencies": {
|
|
18
|
+
"@foxglove/tsconfig": "2.0.0",
|
|
19
|
+
"typescript": "5.3.3"
|
|
20
|
+
},
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"@foxglove/studio": "2.4.0"
|
|
23
|
+
}
|
|
24
|
+
}
|
package/src/index.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@foxglove/studio";
|