-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.6 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.6 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
{
"name": "surfcal",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"bin": {
"surfcal": "dist/presentation/cli/index.js",
"surfcal-mcp": "dist/presentation/mcp/server.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"asynckit": "^0.4.0",
"axios": "^1.11.0",
"call-bind-apply-helpers": "^1.0.2",
"combined-stream": "^1.0.8",
"delayed-stream": "^1.0.0",
"dunder-proto": "^1.0.1",
"es-define-property": "^1.0.1",
"es-errors": "^1.3.0",
"es-object-atoms": "^1.1.1",
"es-set-tostringtag": "^2.1.0",
"follow-redirects": "^1.15.11",
"form-data": "^4.0.4",
"function-bind": "^1.1.2",
"get-intrinsic": "^1.3.0",
"get-proto": "^1.0.1",
"gopd": "^1.2.0",
"has-symbols": "^1.1.0",
"has-tostringtag": "^1.0.2",
"hasown": "^2.0.2",
"math-intrinsics": "^1.1.0",
"mime-db": "^1.52.0",
"mime-types": "^2.1.35",
"proxy-from-env": "^1.1.0",
"typescript": "^5.9.2",
"undici-types": "^7.10.0"
},
"devDependencies": {
"@types/jest": "^28.0.0",
"@types/node": "^20.12.12",
"dotenv": "^17.2.2",
"jest": "^28.0.0",
"prettier": "^3.6.2",
"ts-jest": "^28.0.0"
},
"engines": {
"node": "^18.14.0 || ^20.0.0"
},
"scripts": {
"build": "tsc",
"start": "npm run build && node dist/presentation/cli/index.js",
"start:mcp": "npm run build && node dist/presentation/mcp/server.js",
"test": "jest",
"test:mcp": "node test-mcp.js",
"lint": "prettier --check .",
"lint:fix": "prettier --write ."
},
"keywords": [],
"author": "",
"license": "ISC"
}