-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.22 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "Apollo_transmit",
"displayName": "Apollo_test",
"description": "Example panel that lets you call services",
"publisher": "Foxglove",
"homepage": "https://foxglove.dev",
"version": "1.0.0",
"license": "MIT",
"main": "./dist/extension.js",
"keywords": [],
"scripts": {
"build": "foxglove-extension build",
"foxglove:prepublish": "foxglove-extension build --mode production",
"lint:ci": "eslint --report-unused-disable-directives .",
"lint": "eslint --report-unused-disable-directives --fix .",
"local-install": "foxglove-extension install",
"package": "foxglove-extension package",
"pretest": "foxglove-extension pretest"
},
"devDependencies": {
"@foxglove/eslint-plugin": "2.0.0",
"@foxglove/extension": "2.17.0",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"create-foxglove-extension": "1.0.4",
"eslint": "9.15.0",
"prettier": "3.3.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-json-view": "1.21.3",
"typescript": "5.7.2"
},
"dependencies": {
"@foxglove/ws-protocol": "^0.7.4",
"ws": "^8.18.0"
}
}