-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1017 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 1017 Bytes
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": "search1api-cli",
"version": "1.2.0",
"description": "CLI tool for Search1API - web search, news, crawl, sitemap, reasoning and trending",
"type": "module",
"bin": {
"search1api": "./dist/index.js",
"s1": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"build:binary": "bun run scripts/build-binary.ts",
"build:binary:cross": "bun run scripts/build-binary.ts --cross",
"prepublishOnly": "npm run build",
"postinstall": "node scripts/postinstall.js"
},
"keywords": [
"search",
"search1api",
"cli",
"web-search",
"news",
"crawl"
],
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"scripts"
],
"dependencies": {
"chalk": "^5.4.1",
"commander": "^13.1.0",
"update-notifier": "^7.3.1"
},
"devDependencies": {
"@types/node": "^22.13.0",
"@types/update-notifier": "^6.0.8",
"typescript": "^5.7.0"
}
}