forked from gapmiss/live-mcp-for-obsidian
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.35 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.35 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "knapper",
"version": "0.7.0",
"description": "MCP server for stateless Obsidian plugin development with one managed session, browser automation, and debugging.",
"keywords": [
"automation",
"cdp",
"devtools",
"mcp",
"model-context-protocol",
"obsidian",
"obsidian-plugin",
"playwright",
"plugin-development"
],
"homepage": "https://github.com/paperkeel/knapper#readme",
"bugs": {
"url": "https://github.com/paperkeel/knapper/issues"
},
"license": "MIT",
"author": "slate-rehm",
"repository": {
"type": "git",
"url": "git+https://github.com/paperkeel/knapper.git"
},
"bin": {
"knap": "./dist/cli.js",
"knapper": "./dist/cli.js"
},
"files": [
"dist",
"skills",
"commands",
"agents",
"rules",
".mcp.json",
".cursor-plugin",
".claude-plugin",
".codex-plugin",
".agents"
],
"type": "module",
"scripts": {
"clean": "tsx scripts/clean-dist.ts",
"build": "npm run clean && tsgo",
"dev": "tsgo --watch",
"start": "node dist/cli.js",
"check": "vp check",
"check:fix": "vp check --fix",
"typecheck": "tsgo --project tsconfig.check.json",
"test": "vitest run",
"test:watch": "vitest",
"smoke": "tsx scripts/ci-smoke.ts",
"acceptance": "tsx scripts/acceptance.ts",
"fence": "tsx scripts/fence-live.ts",
"bg-input": "tsx scripts/background-input-live.ts",
"e2e": "tsx scripts/e2e.ts",
"versions:check": "tsx scripts/sync-version.ts --check",
"versions:sync": "tsx scripts/sync-version.ts",
"prepare": "npm run versions:check && npm run build",
"workspaces": "tsx scripts/workspaces-live.ts"
},
"dependencies": {
"@modelcontextprotocol/client": "2.0.0",
"@modelcontextprotocol/core": "2.0.0",
"@modelcontextprotocol/server": "2.0.0",
"@playwright/mcp": "0.0.79",
"yargs": "^17.7.2",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^22.15.17",
"@types/yargs": "^17.0.33",
"@typescript/native-preview": "7.0.0-dev.20260707.2",
"playwright-core": "1.63.0-alpha-2026-08-05",
"tsx": "^4.20.6",
"vite-plus": "0.2.6",
"vitest": "^4.1.1"
},
"devEngines": {
"packageManager": {
"name": "npm",
"version": ">=11",
"onFail": "warn"
}
},
"engines": {
"node": ">=20"
},
"mcpName": "io.github.paperkeel/knapper"
}