forked from tensorflow/tfjs-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 877 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
38
{
"name": "tfjs-examples-electron",
"author": {
"name": "TensorFlow.js Team",
"email": "[email protected]"
},
"homepage": "https://js.tensorflow.org",
"version": "0.1.0",
"description": "An example for deploying TensorFlow.js models in an Electron.js-based desktop app",
"license": "Apache-2.0",
"repository": "https://github.com/tensorflow/tfjs-examples",
"dependencies": {
"@tensorflow/tfjs": "^1.2.2",
"@tensorflow/tfjs-node": "^1.2.3",
"@material/snackbar": "^3.0.0",
"jimp": "^0.6.4"
},
"devDependencies": {
"electron-builder": "^20.44.4",
"electron-prebuilt-compile": "^4.0.0"
},
"main": "main.js",
"scripts": {
"start": "electron ."
},
"build": {
"linux": {
"target": [
{
"target": "deb",
"arch": [
"x64"
]
}
]
}
}
}