-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1 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
{
"name": "@jacobmarks/reverse_image_search",
"version": "1.0.0",
"type": "module",
"main": "src/ReverseImageSearchPlugin.tsx",
"license": "MIT",
"fiftyone": {
"script": "dist/index.umd.js"
},
"scripts": {
"dev": "IS_DEV=true && nodemon --watch ./src --ext js,jsx,ts,tsx --exec 'yarn build'",
"build": "vite build",
"archive": "./scripts/archive.sh",
"bump": "python ./scripts/update_version.py bump",
"release": "./scripts/release.sh"
},
"dependencies": {
"lodash": "^4.17.21",
"nodemon": "^3.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"recoil": "^0.7.7"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.3.0",
"@types/node": "^22.7.6",
"@vitejs/plugin-react": "^4.3.2",
"@voxel51/fiftyone-js-plugin-build": "^1.0.22",
"typescript": "^5.6.3",
"vite": "^5.4.9",
"vite-plugin-externalize-deps": "^0.8.0",
"vite-plugin-externals": "^0.6.2"
},
"packageManager": "yarn@3.5.1"
}