-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 940 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 940 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
{
"name": "tfjs-basic-chrome-extension",
"version": "0.2.0",
"description": "Use tfjs model.predict in a chrome extension (v3)",
"scripts": {
"copy": "copy src\\contentScript.js dist\\src\\ && copy src\\jsmodels\\cats_vs_dogs\\ dist\\src\\jsmodels\\cats_vs_dogs\\ && copy src\\jsmodels\\filter_multi\\ dist\\src\\jsmodels\\filter_multi\\",
"build": "parcel build src\\background.js --dist-dir dist\\src\\ && npm run copy && parcel build src\\contentScript.js --dist-dir dist\\src\\ ",
"watch": "npm run copy && parcel watch src\\background.js --dist-dir dist\\src\\"
},
"license": "Apache 2.0",
"devDependencies": {
"buffer": "^6.0.3",
"clang-format": "^1.2.3",
"parcel": "^2.3.2",
"parcel-bundler": "^1.12.5",
"process": "^0.11.10"
},
"resolutions": {
"node-fetch": "2.6.7"
},
"dependencies": {
"@tensorflow-models/mobilenet": "^2.1.0",
"@tensorflow/tfjs": "^3.13.0"
}
}