-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 840 Bytes
/
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": "demo",
"version": "1.0.0",
"license": "MIT",
"author": "Levon Khachatryan <@khlevon>",
"description": "A demo of onnxruntime-web in browser",
"keywords": [
"onnx",
"onnxruntime",
"onnxruntime-web",
"ML",
"AI"
],
"main": "index.js",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"https-preview": "serve dist"
},
"devDependencies": {
"@types/dom-mediacapture-transform": "0.1.4",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"@vitejs/plugin-react": "3.0.1",
"prettier": "2.8.3",
"sass": "1.57.1",
"typescript": "4.8.3",
"vite": "4.0.4",
"vite-plugin-static-copy": "0.13.0"
},
"dependencies": {
"onnxruntime-web": "1.14.0",
"react": "18.2.0",
"react-dom": "18.2.0"
}
}