-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.61 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
{
"name": "search1api-cli",
"version": "1.3.1",
"description": "CLI tool for Search1API - web search, news, crawl, sitemap, and trending",
"type": "module",
"exports": {
".": {
"types": "./dist/sdk.d.ts",
"import": "./dist/sdk.js"
},
"./sdk": {
"types": "./dist/sdk.d.ts",
"import": "./dist/sdk.js"
}
},
"bin": {
"search1api": "./dist/index.js",
"s1": "./dist/index.js"
},
"scripts": {
"build": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\" && tsc",
"test": "npm run build && node --test tests/*.test.mjs",
"test:oauth:e2e": "npm run build && node --test tests/oauth-e2e.test.mjs",
"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",
"repository": {
"type": "git",
"url": "git+https://github.com/superagents-lab/search1api-cli.git"
},
"homepage": "https://s1.dev",
"bugs": {
"url": "https://github.com/superagents-lab/search1api-cli/issues"
},
"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"
}
}