-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.31 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@himeka/booru",
"version": "2.7.7",
"description": "Search (and do other things) on a bunch of different boorus!",
"author": "asadahimeka (https://github.com/asadahimeka)",
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typings": "./dist/index.d.ts",
"homepage": "https://github.com/asadahimeka/booru-search#readme",
"files": [
"dist/"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/asadahimeka/booru-search.git"
},
"bugs": {
"url": "https://github.com/asadahimeka/booru-search/issues"
},
"scripts": {
"build": "tsup",
"release": "node scripts/release.mjs",
"lint": "eslint -c .eslintrc.js --ext .ts ./src",
"prebuild": "npm run lint",
"test": "jest"
},
"keywords": [
"booru",
"e621",
"hypnohub",
"danbooru",
"konachan",
"yandere",
"gelbooru",
"rule34",
"safebooru",
"lolibooru",
"sakugabooru",
"3dbooru",
"tbib",
"xbooru",
"paheal",
"derpibooru"
],
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"fast-xml-parser": "4.4.0",
"isomorphic-unfetch": "3.1.0"
},
"devDependencies": {
"@types/jest": "29.2.2",
"@types/node": "16.9.0",
"@types/node-fetch": "2.6.2",
"@typescript-eslint/eslint-plugin": "5.42.1",
"@typescript-eslint/parser": "5.42.1",
"chalk": "5.1.2",
"enquirer": "2.3.6",
"eslint": "8.27.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "48.2.9",
"execa": "6.1.0",
"jest": "29.3.1",
"minimist": "1.2.7",
"semver": "7.3.8",
"tsup": "6.4.0",
"typescript": "4.8.4"
},
"directories": {
"lib": "src/",
"test": "test/"
},
"contributors": [
{
"name": "Vladlen",
"url": "https://github.com/negezor"
},
{
"name": "Favna",
"url": "https://github.com/Favna"
},
{
"name": "Bobby Wibowo",
"url": "https://github.com/BobbyWibowo"
},
{
"name": "AtoraSuunva",
"url": "https://github.com/AtoraSuunva"
},
{
"name": "asadahimeka",
"url": "https://github.com/asadahimeka"
}
]
}