This repository has been archived by the owner on Oct 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
49 lines (49 loc) · 1.45 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
{
"name": "nudenet",
"version": "0.3.0",
"description": "NudeNet: NSFW Object Detection for TFJS and NodeJS",
"main": "nudenet.js",
"scripts": {
"start": "node src/nudenet.js -i samples/nude.jpg -o samples/nude-out-default.jpg",
"dev": "build --profile development",
"lint": "eslint src/*"
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vladmandic/nudenet.git"
},
"author": "Vladimir Mandic <mandic00@live.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vladmandic/nudenet/issues"
},
"homepage": "https://github.com/vladmandic/nudenet#readme",
"dependencies": {
"@tensorflow/tfjs": "^4.5.0",
"@tensorflow/tfjs-node": "^4.5.0",
"@vladmandic/pilogger": "^0.4.8",
"argparse": "^2.0.1"
},
"devDependencies": {
"@html-eslint/eslint-plugin": "^0.18.0",
"@html-eslint/parser": "^0.18.0",
"@tensorflow/tfjs-backend-webgl": "^4.5.0",
"@tensorflow/tfjs-backend-webgpu": "0.0.1-alpha.20",
"@tensorflow/tfjs-node": "^4.20.0",
"@vladmandic/build": "^0.9.2",
"@vladmandic/pilogger": "^0.4.6",
"canvas": "^2.11.2",
"eslint": "^8.40.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"long": "^5.2.3",
"pipe2jpeg": "^0.4.1"
}
}