-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.59 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
67
68
69
{
"name": "mdinterface",
"version": "0.2.1",
"description": "A live markdown canvas wired to Claude Code. Highlight a passage to set both the context and the scope, ask, and Claude edits exactly that and leaves the rest alone.",
"license": "MIT",
"author": "Kevin Sundstrom",
"type": "commonjs",
"repository": {
"type": "git",
"url": "git+https://github.com/kevinsundstrom/mdinterface.git"
},
"homepage": "https://github.com/kevinsundstrom/mdinterface#readme",
"bugs": {
"url": "https://github.com/kevinsundstrom/mdinterface/issues"
},
"bin": {
"mdinterface": "server.js"
},
"scripts": {
"start": "bash start.sh",
"mdinterface": "node server.js",
"lint": "biome check .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit",
"test": "node --test",
"prepublishOnly": "npm run lint && npm run typecheck && npm test"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"claude",
"claude-code",
"markdown",
"canvas",
"live-preview",
"editor",
"terminal",
"mcp"
],
"engines": {
"node": ">=18"
},
"files": [
"server.js",
"mcp-server.js",
"notion-poll.js",
"notion-sync.js",
"access.js",
"start.sh",
"public/",
"README.md",
"LICENSE"
],
"dependencies": {
"express": "^4.19.0",
"ws": "^8.17.0"
},
"optionalDependencies": {
"node-pty": "^1.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"@types/express": "^4.17.21",
"@types/node": "^20.14.0",
"@types/ws": "^8.5.10",
"typescript": "^5.5.0"
}
}