-
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) · 889 Bytes
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 889 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": "anyapi-cli",
"version": "0.9.0",
"description": "Official CLI for AnyAPI, a unified marketplace for scraping and data APIs.",
"type": "module",
"bin": {
"anyapi": "dist/index.js"
},
"files": [
"dist",
"skills",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "vitest run",
"canary:live": "node scripts/live-discovery-canary.mjs"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/getanyapi-com/cli.git"
},
"keywords": [
"anyapi",
"cli",
"scraping",
"data-api",
"agents"
],
"author": "",
"license": "MIT",
"dependencies": {
"commander": "^12.1.0",
"jq-wasm": "^3.0.0-jq-1.8.2"
},
"devDependencies": {
"@types/node": "^26.1.0",
"typescript": "^6.0.3",
"vitest": "^3.2.6"
}
}