forked from tensorflow/tfjs-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 865 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
{
"name": "tfjs-basic-chrome-extension",
"version": "0.1.0",
"description": "Use tfjs model.predict in a chrome extension",
"scripts": {
"copy": "cp src/content.js dist/src/ && cp src/imagenet_classes.js dist/src/",
"build": "parcel build src/background.js -d dist/src/ -o background --no-minify && npm run copy",
"watch": "npm run copy && parcel watch src/background.js --hmr-hostname localhost -d dist/src/ -o background"
},
"license": "Apache 2.0",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"clang-format": "^1.2.3",
"parcel-bundler": "^1.12.5"
},
"resolutions": {
"is-svg": "4.3.1",
"node-fetch": "2.6.1",
"vega": "5.17.3"
},
"dependencies": {
"@tensorflow/tfjs": "^1.3.2"
}
}