-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.19 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
{
"name": "supathings-mcp",
"version": "0.4.0",
"description": "SupaThings MCP: a Things 3 MCP server with SQLite reads, URL scheme writes, and optional AppleScript diagnostics.",
"main": "dist/index.js",
"type": "module",
"private": false,
"bin": {
"supathings-mcp": "dist/index.js",
"things-mcp": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"NOTICE"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"smoke": "node scripts/smoke-test.mjs",
"smoke:mcp": "node scripts/mcp-smoke.mjs",
"clients:install": "bash scripts/install-clients.sh --all",
"clients:uninstall": "bash scripts/uninstall-clients.sh --all",
"prepack": "pnpm build"
},
"keywords": [
"mcp",
"things",
"culturedcode",
"culturedcode.com",
"culturedcode.com/things",
"culturedcode.com/things/mcp"
],
"author": "soycanopa",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@10.11.1",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"zod": "^3.25.56"
},
"devDependencies": {
"@types/node": "^22.15.30",
"typescript": "^5.8.3"
}
}