-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.41 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
{
"name": "@l2studio/iqdb-api",
"version": "0.2.1",
"description": "A library for iqdb.org image search api",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/l2studio/iqdb-api.git",
"author": "lgou2w <lgou2w@hotmail.com>",
"license": "Apache-2.0",
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"scripts": {
"clean": "rimraf lib",
"build": "npm run clean && tsc",
"test": "ts-node -T -P tsconfig.json test/index.ts",
"lint": "eslint --ext .js,.ts --ignore-path .gitignore .",
"prepublishOnly": "npm run lint && npm run build"
},
"files": [
"lib"
],
"keywords": [
"l2studio",
"lgou2w",
"iqdb-api",
"iqdb-client",
"iqdb",
"image-search"
],
"dependencies": {
"cheerio": "1.0.0-rc.12",
"form-data": "^4.0.0",
"got": "^11.8.6"
},
"devDependencies": {
"@types/cheerio": "^0.22.31",
"@types/node": "^16.18.23",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"rimraf": "^4.4.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"peerDependencies": {
"got": "^11.0.0"
},
"peerDependenciesMeta": {
"got": {
"optional": true
}
}
}