-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.25 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": "search",
"version": "1.0.0",
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
"mcproto": "^0.9.0",
"nunjucks": "^3.2.2",
"require-dir": "^1.2.0",
"undici": "^5.4.0"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@types/cheerio": "^0.22.24",
"@types/express": "^4.17.11",
"@typescript-eslint/eslint-plugin": "5.41.0",
"@typescript-eslint/parser": "5.41.0",
"eslint": "^7.15.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "6.1.1",
"ts-node": "10.9.1",
"typescript": "4.8.4"
},
"scripts": {
"eslint:github-action": "eslint src/**/*.ts",
"compile": "tsc",
"start": "yarn && node build/index.js"
},
"description": "Simple search engine inspired by Searx, written in TypeScript. Easy to self host and has no ads or tracking.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/birajrai/search.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/birajrai/search/issues"
},
"homepage": "https://github.com/birajrai/search#readme"
}