-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
87 lines (87 loc) · 2.07 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
{
"name": "sagiri",
"version": "4.3.0",
"description": "A simple, lightweight and actually good JS wrapper for the SauceNAO API.",
"license": "MIT",
"main": "./dist/sagiri.cjs",
"module": "./dist/sagiri.mjs",
"types": "./dist/sagiri.d.ts",
"exports": {
".": {
"require": "./dist/sagiri.cjs",
"import": "./dist/sagiri.mjs"
}
},
"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"
}
],
"contributors": [
"sr229",
"Agent_RBY_",
"Kotosif"
],
"keywords": [
"hitorigoto",
"sagiri",
"saucenao",
"simple",
"easy",
"api",
"functional",
"image",
"source"
],
"engines": {
"node": ">=20"
},
"files": [
"dist",
"scripts",
"README.md",
"LICENSE"
],
"scripts": {
"test": "bun --env-file='./.env.test.local' test bun",
"test:deno": "deno test --unstable-sloppy-imports --allow-net --allow-read test/deno/sagiri.test.ts",
"coverage:deno": "deno test --unstable-sloppy-imports --allow-net --allow-read --coverage test/deno/sagiri.test.ts",
"test:nodejs": "mocha ./test/node/",
"coverage:nodejs": "nyc mocha ./test/node/",
"coverage": "bun --env-file='./.env.test.local' test bun --coverage",
"lint": "eslint --fix",
"build": "unbuild",
"prepublishOnly": "bun run build",
"postinstall": "node scripts/postinstall.js"
},
"devDependencies": {
"@types/bun": "latest",
"@types/mocha": "^10.0.9",
"@types/node-fetch": "^2.6.11",
"bun": "^1.1.26",
"eslint": "^9.9.1",
"mocha": "^11.0.1",
"nyc": "^17.1.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.3.0",
"unbuild": "^3.2.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"form-data": "^4.0.0"
},
"optionalDependencies": {
"node-fetch": "^2.6.7"
}
}