-
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.45 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.45 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": "@onestepat4time/mcp-comet",
"version": "1.1.5",
"description": "The definitive MCP server for Perplexity Comet browser management",
"type": "module",
"main": "dist/index.js",
"bin": {
"mcp-comet": "./dist/cli.js"
},
"files": [
"dist/",
"README.md",
"LICENSE",
"CHANGELOG.md",
"mcp-comet.config.example.json"
],
"keywords": [
"mcp",
"perplexity",
"comet",
"cdp",
"browser",
"ai",
"mcp-server",
"model-context-protocol"
],
"repository": {
"type": "git",
"url": "git+https://github.com/OneStepAt4time/mcp-comet.git"
},
"license": "MIT",
"scripts": {
"start": "node dist/index.js",
"build": "tsc",
"test": "vitest run",
"test:ci": "vitest run --coverage",
"test:watch": "vitest",
"lint": "biome check .",
"format": "biome format --write .",
"format:check": "biome check --formatter-enabled=true .",
"typecheck": "tsc --noEmit",
"precommit": "node scripts/pre-commit-gates.mjs",
"prepublishOnly": "npm run build && npm test"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"chrome-remote-interface": "^0.33.2",
"zod": "^3.25.76"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@types/chrome-remote-interface": "^0.33.0",
"@types/node": "^20.11.0",
"@vitest/coverage-v8": "^1.6.1",
"typescript": "^5.4.0",
"vitest": "^1.6.0"
}
}