-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.4 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "fo-video-sensor-data-sync",
"version": "0.1.0",
"description": "FiftyOne plugin: sync any per-frame numeric sensor data with video — modal traces + gauges panels",
"license": "Apache-2.0",
"type": "module",
"main": "dist/index.umd.js",
"fiftyone": {
"script": "dist/index.umd.js"
},
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"test": "vitest run"
},
"files": [
"dist"
],
"dependencies": {
"plotly.js-cartesian-dist-min": "^3.1.1",
"react-plotly.js": "^2.6.0",
"@voxel51/voodo": "^0.0.35"
},
"peerDependencies": {
"@fiftyone/operators": "*",
"@fiftyone/playback": "*",
"@fiftyone/plugins": "*",
"@fiftyone/state": "*",
"react": "*",
"react-dom": "*",
"recoil": "*"
},
"peerDependenciesMeta": {
"@fiftyone/operators": { "optional": true },
"@fiftyone/playback": { "optional": true },
"@fiftyone/plugins": { "optional": true },
"@fiftyone/state": { "optional": true },
"react": { "optional": true },
"react-dom": { "optional": true },
"recoil": { "optional": true }
},
"devDependencies": {
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"typescript": "^5.5.0",
"vite": "^7.3.2",
"vite-plugin-css-injected-by-js": "^3.5.2",
"vitest": "^2.1.0"
}
}