-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.02 KB
/
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
39
40
{
"name": "purify-geacc-crx",
"version": "0.1.0",
"description": "Classifies all images on the page as safe/unsafe for General Audiences using Purify.ai Geacc model.",
"keywords": [
"tensorflow",
"tf",
"tensor",
"machine learning",
"ml",
"ai",
"neural networks",
"neuralnetworks",
"deeplearning",
"model",
"image recognition",
"chrome extension",
"chrome",
"google"
],
"scripts": {
"prebuild": "rm -rf dist",
"prebuild-dev": "rm -rf dist",
"build": "parcel build manifest.json",
"build-dev": "NODE_ENV=development parcel build manifest.json --no-minify",
"watch": "parcel watch manifest.json --hmr-hostname localhost"
},
"license": "Apache-2.0",
"devDependencies": {
"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.3",
"parcel-plugin-web-extension": "^1.5.1"
},
"dependencies": {
"@tensorflow/tfjs": "^1.0.2"
}
}