@shortcut/mcp 0.18.0 → 0.20.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "name": "@shortcut/mcp",
3
- "author": "Shortcut (https://www.shortcut.com)",
3
+ "version": "0.20.0",
4
4
  "description": "Shortcut MCP Server",
5
- "repository": {
6
- "type": "git",
7
- "url": "https://github.com/useshortcut/mcp-server-shortcut.git"
8
- },
9
5
  "keywords": [
10
6
  "shortcut",
11
7
  "mcp",
12
8
  "modelcontextprotocol"
13
9
  ],
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://github.com/useshortcut/mcp-server-shortcut.git"
13
+ },
14
14
  "license": "MIT",
15
- "version": "0.18.0",
15
+ "author": "Shortcut (https://www.shortcut.com)",
16
16
  "type": "module",
17
17
  "main": "dist/index.js",
18
18
  "bin": {
@@ -21,35 +21,35 @@
21
21
  "files": [
22
22
  "dist"
23
23
  ],
24
- "devDependencies": {
25
- "@biomejs/biome": "2.0.5",
26
- "@types/bun": "latest",
27
- "@types/express": "^4.17.21",
28
- "bun": "^1.2.5",
29
- "husky": "^9.1.7",
30
- "pino-pretty": "^13.0.0",
31
- "tsdown": "^0.12.9"
32
- },
33
- "peerDependencies": {
34
- "typescript": "^5"
24
+ "scripts": {
25
+ "build": "tsdown",
26
+ "dev:http": "bun run src/server-http.ts",
27
+ "format": "biome check --write ./",
28
+ "lint": "biome check ./",
29
+ "prepare": "husky",
30
+ "prod:http": "node dist/server-http.js",
31
+ "prepublish": "bun run build",
32
+ "test": "bun test",
33
+ "ts": "tsc -b"
35
34
  },
36
35
  "dependencies": {
37
36
  "@modelcontextprotocol/sdk": "^1.25.1",
38
- "@shortcut/client": "^3.1.0",
37
+ "@shortcut/client": "^3.2.0",
39
38
  "express": "^4.18.2",
40
39
  "pino": "^9.5.0",
41
40
  "pino-http": "^10.3.0",
42
41
  "zod": "^3.24.4"
43
42
  },
44
- "scripts": {
45
- "test": "bun test",
46
- "format": "biome check --write ./",
47
- "lint": "biome check ./",
48
- "ts": "tsc -b",
49
- "build": "tsdown",
50
- "prepublish": "bun run build",
51
- "prepare": "husky",
52
- "dev:http": "bun run src/server-http.ts",
53
- "prod:http": "node dist/server-http.js"
43
+ "devDependencies": {
44
+ "@biomejs/biome": "2.3.14",
45
+ "@types/bun": "latest",
46
+ "@types/express": "^4.17.21",
47
+ "bun": "1.3.9",
48
+ "husky": "9.1.7",
49
+ "pino-pretty": "^13.0.0",
50
+ "tsdown": "0.20.3"
51
+ },
52
+ "peerDependencies": {
53
+ "typescript": "^5"
54
54
  }
55
55
  }