forked from ClarityCafe/Sagiri
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.06 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "sagiri",
"version": "3.6.0",
"description": "A simple, lightweight and actually good JS wrapper for the SauceNAO API.",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"contributors": [
"sr229",
"Agent_RBY_",
"Kotosif"
],
"homepage": "https://github.com/ClarityCafe/Sagiri#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ClarityCafe/Sagiri"
},
"bugs": {
"url": "https://github.com/ClarityCafe/Sagiri/issues"
},
"funding": [
{
"type": "individual",
"url": "https://ko-fi.com/capuccino"
}
],
"scripts": {
"build": "tsc",
"coverage": "jest --coverage",
"lint": "eslint . --fix",
"format": "prettier . --write --config .prettierrc",
"prepublishOnly": "bun run build",
"test": "jest",
"test:debug": "cross-env DEBUG=sagiri jest"
},
"keywords": [
"hitorigoto",
"sagiri",
"saucenao",
"simple",
"easy",
"api",
"functional",
"image",
"source"
],
"engines": {
"node": ">=12"
},
"dependencies": {
"bent": "^7.3.12",
"debug": "^4.3.4",
"form-data": "^4.0.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/bent": "7.3.8",
"@types/bun": "latest",
"@types/debug": "4.1.12",
"@types/jest": "29.5.12",
"@types/lodash.ismatch": "4.4.9",
"@types/node": "20.12.7",
"@typescript-eslint/eslint-plugin": "7.7.0",
"@typescript-eslint/parser": "6.21.0",
"bun": "^1.1.3",
"cross-env": "7.0.3",
"eslint": "^9.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-sift": "0.3.1",
"globals": "^15.0.0",
"jest": "29.7.0",
"lodash.ismatch": "4.4.0",
"nock": "13.5.4",
"parse-multipart": "1.0.4",
"prettier": "3.2.5",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"typescript": "5.4.5",
"typescript-eslint": "^7.6.0"
},
"files": [
"dist"
]
}