-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 839 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 839 Bytes
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
{
"name": "@prernadh/yolo-model-tuner-runner",
"version": "1.0.0",
"description": "A panel to run and finetune YOLOv8 models on the current FiftyOne dataset",
"type": "module",
"main": "src/index.ts",
"license": "Apache-2.0",
"scripts": {
"dev": "nodemon --watch ./src --ext js,jsx,ts,tsx --exec 'yarn build'",
"build": "vite build",
"preview": "vite preview"
},
"fiftyone": {
"script": "dist/index.umd.js"
},
"dependencies": {
"react": "^18.2.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.0",
"@types/node": "^22.0.0",
"@types/react": "^18.2.0",
"@vitejs/plugin-react": "^4.0.0",
"@voxel51/fiftyone-js-plugin-build": "^2.0.0",
"nodemon": "^3.0.1",
"typescript": "^5.0.0",
"vite": "^5.0.0",
"vite-plugin-externalize-deps": "^0.8.0"
}
}