forked from HexSleeves/tailscale-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.57 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.57 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
{
"name": "@hexsleeves/tailscale-mcp-server",
"version": "0.3.2",
"description": "A Model Context Protocol (MCP) server that provides seamless integration with Tailscale's CLI commands and REST API, enabling automated network management and monitoring through a standardized interface.",
"keywords": [
"tailscale",
"mcp",
"model context protocol",
"tailscale mcp",
"tailscale mcp server"
],
"author": "HexSleeves",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"bin": {
"tailscale-mcp-server": "./dist/index.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"clean": "rimraf dist",
"build": "bun esbuild.config.js build",
"build:dev": "bun esbuild.config.js dev",
"build:watch": "bun esbuild.config.js watch",
"start": "bun dist/index.js",
"dev": "bun run build:dev && bun dist/index.js",
"dev:watch": "bun run build:watch",
"dev:direct": "tsx src/index.ts",
"typecheck": "tsc --noEmit",
"lint": "biome lint .",
"format": "biome format --write .",
"check": "biome check .",
"check:fix": "biome check --write .",
"test": "bun test",
"test:unit": "bun test ./src/__test__/utils/ ./src/__test__/tailscale/oauth.test.ts",
"test:integration": "bun test ./src/__test__/tailscale/*.integration.test.ts",
"test:coverage": "bun test --coverage",
"test:ci": "bun test ./src/__test__/utils/",
"test:unit:ci": "npm run test:ci",
"test:integration:ci": "bun test --coverage --testNamePattern='integration'",
"test:setup": "./scripts/setup-testing.sh",
"qa": "bun run typecheck && bun run test:unit && bun run check",
"qa:full": "bun run typecheck && bun run test && bun run check",
"inspector": "bunx @modelcontextprotocol/inspector bun dist/index.js",
"prepublishOnly": "bun run build",
"publish": "./scripts/publish.sh",
"publish:test": "./scripts/test-publish.sh"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.3",
"axios": "^1.13.4",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"ipaddr.js": "2.3.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "2.3.13",
"@types/bun": "latest",
"@types/express": "^5.0.6",
"@types/json-schema": "7.0.15",
"@types/node": "^25.0.10",
"audit-ci": "^7.1.0",
"esbuild": "^0.27.2",
"rimraf": "^6.1.2",
"semver": "^7.7.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}