-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.34 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
{
"name": "ddgs",
"version": "1.0.4",
"description": "a simple duckduckgo search engine wrapper for node",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --clean",
"test": "jest",
"test:search": "jest tests/search.test.ts",
"test:images": "jest tests/images.test.ts",
"test:videos": "jest tests/videos.test.ts",
"test:news": "jest tests/news.test.ts",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"prepare": "npm run build"
},
"keywords": [
"duckduckgo",
"search",
"api"
],
"author": "byigitt",
"license": "MIT",
"dependencies": {
"cheerio": "^1.0.0",
"puppeteer": "^21.6.1",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"devDependencies": {
"@types/cheerio": "^0.22.35",
"@types/jest": "^29.5.14",
"@types/node": "^22.8.6",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"tsup": "^8.3.5"
},
"files": [
"dist",
"LICENSE",
"README.md"
]
}