-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.25 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.25 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
{
"name": "@d4vram369/mcp-transcript",
"mcpName": "io.github.d4vram369/mcp-transcript",
"version": "1.0.0",
"description": "Remote/local MCP server for transcript processing and PBL project-learning logs.",
"type": "commonjs",
"main": "index.js",
"bin": {
"mcp-transcript": "bin/mcp-transcript.js"
},
"exports": {
".": "./index.js",
"./server": "./server.js"
},
"files": [
"index.js",
"server.js",
"lib",
"bin"
],
"scripts": {
"start": "node index.js",
"start:stdio": "node bin/mcp-transcript.js",
"check": "node --check index.js && node --check server.js && node --check bin/mcp-transcript.js",
"pack:check": "npm pack --dry-run"
},
"keywords": [
"mcp",
"model-context-protocol",
"claude",
"transcript",
"pbl"
],
"repository": {
"type": "git",
"url": "git+https://github.com/D4vRAM369/mcp-transcript.git"
},
"bugs": {
"url": "https://github.com/D4vRAM369/mcp-transcript/issues"
},
"homepage": "https://github.com/D4vRAM369/mcp-transcript#readme",
"author": "",
"license": "ISC",
"engines": {
"node": ">=18"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0"
}
}