-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.48 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": "@okayurisotto/echikana",
"version": "0.0.3",
"description": "A Node.js library for NSFW classification of images.",
"keywords": [
"NSFW"
],
"license": "MIT",
"author": "okayurisotto",
"homepage": "https://github.com/okayurisotto/echikana",
"repository": {
"type": "git",
"url": "https://github.com/okayurisotto/echikana.git"
},
"bugs": {
"url": "https://github.com/okayurisotto/echikana/issues"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"type": "module",
"files": [
"dist"
],
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"scripts": {
"build": "tsup",
"lint": "eslint ./src/**/*.ts",
"typecheck": "tsc"
},
"engines": {
"node": "^20.16.0"
},
"packageManager": "[email protected]+sha512.dc09430156b427f5ecfc79888899e1c39d2d690f004be70e05230b72cb173d96839587545d09429b55ac3c429c801b4dc3c0e002f653830a420fa2dd4e3cf9cf",
"dependencies": {
"onnxruntime-node": "1.18.0",
"sharp": "^0.33.4"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@tsconfig/node-lts": "^20.1.3",
"@tsconfig/strictest": "^2.0.5",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.2.0",
"eslint": "^9.9.0",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"typescript-eslint": "^7.18.0"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}