-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.67 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.67 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
62
63
64
65
66
{
"name": "@currents/mcp",
"type": "module",
"files": [
"build",
"README.md"
],
"keywords": [
"currents",
"mcp-server",
"playwright",
"dashboard",
"reporting"
],
"bin": "./build/index.js",
"version": "2.2.16",
"description": "Currents MCP server",
"main": "./build/cjs/api.js",
"module": "./build/api.js",
"types": "./build/api.d.ts",
"exports": {
".": {
"types": "./build/api.d.ts",
"import": "./build/api.js",
"require": "./build/cjs/api.js"
}
},
"scripts": {
"build": "tsc && tsc -p tsconfig.cjs.json && node ./scripts/write-cjs-package-json.mjs && chmod 755 build/index.js",
"publish:mcp": "npm run publish:npm",
"publish:npm": "npm run rm && npm run build && ./publish.cjs",
"start": "node build/index.js",
"rm": "rimraf dist",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "npm run build && vitest run",
"test:coverage": "npm run build && vitest run --coverage",
"release": "release-it",
"release:dry": "release-it --dry-run"
},
"author": "Currents Software Inc",
"homepage": "https://currents.dev",
"repository": {
"type": "git",
"url": "https://github.com/currents-dev/currents-mcp.git"
},
"license": "Apache-2.0",
"engines": {
"node": ">=20"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.28.0",
"commander": "^12.1.0",
"pino": "^9.9.5",
"pino-pretty": "^13.1.1",
"zod": "^4.3.5"
},
"devDependencies": {
"@types/node": "^20.19.0",
"@release-it/conventional-changelog": "^10.0.0",
"release-it": "^19.0.3",
"rimraf": "^6.0.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}