-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.74 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.74 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
{
"name": "linear-mcp",
"version": "1.0.0",
"description": "Linear MCP Server with Streamable HTTP and OAuth2.1 support",
"main": "dist/index.js",
"type": "module",
"scripts": {
"dev": "bun --hot src/index.ts",
"dev:worker": "wrangler dev",
"start": "bun run src/index.ts",
"build": "bun build src/index.ts --outdir dist --target bun",
"deploy": "wrangler deploy",
"deploy:tail": "wrangler tail",
"kv:create": "wrangler kv:namespace create TOKENS",
"kv:create:preview": "wrangler kv:namespace create TOKENS --preview",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"format:check": "biome format .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:integration": "vitest run tests/integration/live-api.test.ts",
"test:client": "bun run scripts/test-client.ts"
},
"keywords": [
"mcp",
"model-context-protocol",
"linear",
"streamable-http",
"oauth2",
"server"
],
"author": "",
"license": "MIT",
"dependencies": {
"@biomejs/biome": "^2.1.3",
"@hono/node-server": "^1.13.1",
"@linear/sdk": "^55.2.1",
"@modelcontextprotocol/sdk": "^1.24.3",
"@types/node": "^24.2.0",
"fetch-to-node": "^2.1.0",
"hono": "^4.8.12",
"itty-router": "^5.0.17",
"uuid": "^11.1.0",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.25.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241127.0",
"@types/uuid": "^10.0.0",
"bun-types": "latest",
"typescript": "^5.9.2",
"vitest": "^3.2.4",
"wrangler": "^3.94.0"
},
"engines": {
"bun": ">=1.0.0",
"node": ">=20.0.0"
}
}