-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.63 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
60
{
"name": "rsn-filter",
"version": "1.0.1",
"description": "A comprehensive NSFW image detection npm package, equipped with advanced algorithms to ensure the safety and integrity of online platforms by swiftly identifying and filtering explicit content",
"type": "module",
"types": "./types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"require": "./build/cjs/index.cjs",
"import": "./build/esm/index.js",
"default": "./build/esm/index.js"
},
"./*": {
"types": "./types/*.d.ts",
"require": "./build/cjs/*.cjs",
"import": "./build/esm/*.js",
"default": "./build/esm/*.js"
}
},
"scripts": {
"test": "node example/test.cjs",
"compile": "tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json ./tsconfig.types.json && node compilec.js",
"build:clean": "rm -rf ./build",
"build": "npm-run-all build:clean compile"
},
"repository": {
"type": "git",
"url": "https://github.com/RsnLabs/rsn-filter"
},
"funding": {
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/rnilaweera"
},
"author": "rnilaweera",
"license": "MIT",
"keywords": [
"ai",
"image recognition",
"content moderation",
"online safety",
"nsfw filtering",
"explicit content detection",
"image analysis",
"content categorization",
"image moderation",
"online platform safety"
],
"dependencies": {
"axios": "^1.6.3",
"colors": "^1.4.0",
"readline": "^1.3.0"
},
"devDependencies": {
"@types/node": "^20.11.6",
"npm-run-all": "^4.1.5",
"typescript": "^5.3.3",
"undici-types": "^6.4.0"
}
}