-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.98 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.98 KB
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
{
"name": "@link-assistant/web-search",
"version": "0.6.0",
"description": "A web search microservice that aggregates results from multiple search engines (Google, DuckDuckGo, Bing) with reranking support",
"type": "module",
"main": "src/index.js",
"types": "src/index.d.ts",
"exports": {
".": {
"types": "./src/index.d.ts",
"import": "./src/index.js"
}
},
"bin": {
"web-search": "./bin/web-search.js"
},
"scripts": {
"test": "node --test tests/",
"start": "node src/server.js",
"dev": "node --watch src/server.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check:duplication": "jscpd .",
"check": "npm run lint && npm run format:check && npm run check:duplication",
"prepare": "husky || true",
"changeset": "changeset",
"changeset:version": "node scripts/changeset-version.mjs",
"changeset:publish": "changeset publish",
"changeset:status": "changeset status --since=origin/main"
},
"keywords": [
"web-search",
"search-engine",
"google",
"duckduckgo",
"bing",
"search-api",
"microservice",
"reranking",
"meta-search"
],
"author": "Link Assistant",
"license": "Unlicense",
"repository": {
"type": "git",
"url": "https://github.com/link-assistant/web-search"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"express": "^4.21.2"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"jscpd": "^4.0.5",
"lint-staged": "^16.2.6",
"prettier": "^3.6.2",
"test-anywhere": "^0.8.48"
},
"lint-staged": {
"*.{js,mjs,cjs}": [
"eslint --fix --max-warnings 0 --no-warn-ignored",
"prettier --write",
"prettier --check"
],
"*.md": [
"prettier --write",
"prettier --check"
]
}
}