-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
59 lines (58 loc) · 1.5 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "nsfw-extension",
"version": "0.0.1",
"description": "Chrome browser extension for detecting and bluring NSFW images.",
"keywords": [
"tensorflow",
"tf",
"tensor",
"machine learning",
"ml",
"ai",
"neural networks",
"neuralnetworks",
"deeplearning",
"model",
"image recognition",
"browser extension",
"google",
"nsfw",
"nsfwjs"
],
"scripts": {
"copy": "cp src/content.js dist/src/",
"build": "npm run build-nsfw && npm run build-background && npm run build-worker && npm run copy && npm run build-clean",
"build-nsfw": "tsc src/nsfw_classes.ts && tsc src/nsfw_wrapper.ts",
"build-background": "parcel build src/background.js -d dist/src/ -o background",
"build-worker": "parcel build src/worker.js -d dist/src/ -o worker",
"build-clean": "rm src/nsfw_classes.js && rm src/nsfw_wrapper.js"
},
"author": "GramThanos",
"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.7.1",
"@tensorflow/tfjs": "^1.0.4",
"seedrandom": "^3.0.1",
"@types/jest": "^24.0.6",
"all-contributors-cli": "^6.1.2",
"babel-core": "^6.26.0",
"jest": "^24.1.0",
"jpeg-js": "^0.3.4",
"node-fetch": "^2.3.0",
"np": "^5.0.0",
"ts-jest": "^24.0.0",
"ts-node": "~8.1.0",
"tslint": "~5.15.0",
"typescript": "3.4.4"
},
"peerDependencies": {
"@tensorflow/tfjs": "^1.0.4"
},
"dependencies": {
"@tensorflow/tfjs": "^1.0.4",
"libgif": "0.0.2"
}
}