-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.1 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.1 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
{
"name": "api-discover",
"version": "0.1.0",
"description": "Point at any website. Get a typed API client. Drives a real browser, captures every XHR, emits OpenAPI 3.1 + zero-dep client + an upfront auth-feasibility verdict.",
"type": "module",
"bin": {
"api-discover": "./bin/api-discover.mjs"
},
"scripts": {
"test": "node test/run.mjs",
"test:analyzer": "node test/analyzer.test.mjs",
"lint:secrets": "node test/sanity-regex.mjs"
},
"keywords": [
"openapi",
"api-discovery",
"reverse-engineering",
"browser-automation",
"cdp",
"chrome-devtools-protocol",
"claude-code"
],
"author": "EJ Redd",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/PythonLuvr/api-discover.git"
},
"bugs": {
"url": "https://github.com/PythonLuvr/api-discover/issues"
},
"homepage": "https://github.com/PythonLuvr/api-discover#readme",
"engines": {
"node": ">=18"
},
"files": [
"bin/",
"lib/",
"claude-skill/",
"install.sh",
"install.ps1",
"LICENSE",
"README.md",
"CONTRIBUTING.md"
]
}