-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) Β· 865 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) Β· 865 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
{
"name": "tabapi",
"version": "0.1.0",
"description": "Record browser sessions, infer hidden APIs, export TypeScript SDK + OpenAPI + MCP Server",
"type": "module",
"bin": { "tabapi": "./dist/cli/index.js" },
"scripts": {
"build": "tsc",
"dev": "tsx src/cli/index.ts",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"lint": "eslint src/"
},
"dependencies": {
"commander": "^12.1.0",
"playwright": "^1.49.0",
"yaml": "^2.6.0",
"chalk": "^5.3.0",
"nanoid": "^5.0.0",
"@modelcontextprotocol/sdk": "^1.0.0"
},
"devDependencies": {
"typescript": "^5.7.0",
"tsx": "^4.19.0",
"vitest": "^2.1.0",
"@types/node": "^22.0.0"
},
"engines": { "node": ">=20" },
"license": "MIT",
"keywords": ["api", "browser", "recorder", "openapi", "mcp", "sdk", "typescript", "reverse-engineering"]
}