forked from KshitijMhatre/duckduckgo-images-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.04 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
{
"name": "@mudbill/duckduckgo-images-api",
"version": "1.2.2",
"description": "DuckDuckGo image-search api for node",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/@types/index.d.ts",
"author": "Kshitij Mhatre (https://github.com/KshitijMhatre)",
"contributors": [
{
"name": "Magnus Bull",
"email": "mudbill@buttology.net",
"url": "https://github.com/Mudbill"
}
],
"homepage": "https://github.com/Mudbill/duckduckgo-images-api",
"bugs": {
"url": "https://github.com/Mudbill/duckduckgo-images-api/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Mudbill/duckduckgo-images-api.git"
},
"keywords": [
"node",
"javascript",
"duckduckgo",
"image",
"image-search",
"api"
],
"scripts": {
"build": "tsc",
"test": "tsc && node dist/examples/example.js",
"prepublish": "tsc"
},
"dependencies": {
"axios": "^1.3.2"
},
"devDependencies": {
"@types/node": "^18.13.0",
"prettier": "^2.8.3",
"typescript": "^4.9.5"
}
}