This repository was archived by the owner on Sep 10, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
80 lines (80 loc) · 1.99 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
{
"name": "kaori",
"version": "2.0.5",
"description": "Your friendly neighbourhood violinist bringing you the best booru images",
"main": "dist/index.js",
"bin": "dist/cli.js",
"typings": "typings/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.mjs"
}
},
"author": "iCrawl <icrawltogo@gmail.com>",
"license": "MIT",
"scripts": {
"prebuild": "npm run lint",
"build": "tsup",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"pretest": "npm run lint",
"test": "jest --passWithNoTests",
"test:ci": "jest --no-stack-trace --verbose --passWithNoTests",
"prepare": "is-ci || husky install",
"release": "standard-version --preset angular"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iCrawl/kaori.git"
},
"bugs": {
"url": "https://github.com/iCrawl/kaori/issues"
},
"keywords": [
"booru",
"danbooru",
"konachan",
"yandere",
"gelbooru",
"rule34",
"safebooru",
"tbib",
"xbooru",
"youhateus",
"lolibooru"
],
"homepage": "https://github.com/iCrawl/kaori#readme",
"dependencies": {
"fast-xml-parser": "^4.0.3",
"node-fetch": "^3.2.4",
"tslib": "^2.3.1",
"yargs": "^17.2.1"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-proposal-decorators": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^28.1.1",
"@types/node": "^17.0.8",
"@types/node-fetch": "^2.5.12",
"@types/yargs": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"eslint": "^8.0.1",
"eslint-config-marine": "^9.0.6",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"is-ci": "^3.0.0",
"jest": "^28.0.2",
"jest-extended": "^2.0.0",
"lint-staged": "^13.0.1",
"prettier": "^2.4.1",
"standard-version": "^9.3.2",
"tsup": "^6.1.0",
"typescript": "^4.4.4"
}
}