-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 3.53 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 3.53 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
{
"name": "@dinglebear/connexin",
"version": "0.1.0",
"license": "AGPL-3.0-only",
"type": "module",
"description": "Human-approved Connexin MCP App for SSH-backed unblock commands",
"repository": {
"type": "git",
"url": "git+https://github.com/dinglebear-ai/connexin.git"
},
"homepage": "https://github.com/dinglebear-ai/connexin#readme",
"bugs": "https://github.com/dinglebear-ai/connexin/issues",
"publishConfig": {
"access": "public"
},
"keywords": [
"mcp",
"mcp-app",
"ssh",
"sftp",
"shell",
"terminal"
],
"files": [
"dist/",
"!dist/bin/**",
"scripts/install-sftp-helper.mjs",
"scripts/sftp-helper-target.mjs",
"config/connexin.env.example",
"config/connexin.toml.example",
"README.md",
"LICENSE.md"
],
"main": "dist/server/server/main.js",
"packageManager": "npm@11.16.0",
"engines": {
"node": ">=24.0.0",
"npm": ">=11.0.0"
},
"bin": {
"connexin": "dist/server/cli/main.js"
},
"scripts": {
"postinstall": "node scripts/install-sftp-helper.mjs",
"check:launcher": "node --check scripts/install-sftp-helper.mjs && node --check scripts/sftp-helper-target.mjs && node scripts/check-package-contents.mjs",
"clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"build:node": "npm run clean && npm run typecheck && cross-env INPUT=src/app/mcp-app.html vite build && tsc -p config/typescript/tsconfig.server.json",
"build": "npm run clean && npm run typecheck && cross-env INPUT=src/app/mcp-app.html vite build && tsc -p config/typescript/tsconfig.server.json && mkdir -p dist/bin && go build -o dist/bin/connexin-sftp ./cmd/connexin-sftp && node scripts/write-build-manifest.mjs",
"dev": "cross-env NODE_ENV=development CONNEXIN_HTTP_TOKEN=dev-local-token concurrently \"cross-env INPUT=src/app/mcp-app.html vite build --watch\" \"tsx watch src/server/main.ts --http\"",
"serve": "node dist/server/server/main.js --http",
"serve:stdio": "node dist/server/server/main.js --stdio",
"lint": "node scripts/lint-static.mjs",
"format:check": "prettier --check \"src/**/*.{ts,css}\" \"tests/**/*.ts\" \"scripts/**/*.{ts,mjs}\" \"*.{json,ts}\" \"docs/**/*.md\" \"README.md\" \".github/**/*.yml\"",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc -p config/typescript/tsconfig.app.json --noEmit && tsc -p config/typescript/tsconfig.server.json --noEmit && tsc -p config/typescript/tsconfig.scripts.json --noEmit && tsc -p config/typescript/tsconfig.test.json --noEmit",
"check": "npm run build && npm run lint && npm run format:check && npm run test:coverage",
"smoke:stdio": "npm run build && npm run smoke:stdio:built",
"smoke:stdio:built": "tsx scripts/smoke-build-and-stdio.ts",
"verify:deployment": "tsx scripts/verify-deployment.ts",
"test:sftp-integration": "tsx scripts/sftp-integration.ts"
},
"dependencies": {
"@modelcontextprotocol/ext-apps": "^1.7.4",
"@modelcontextprotocol/sdk": "^1.29.0",
"express": "^5.2.1",
"ghostty-web": "^0.4.0",
"node-pty": "1.2.0-beta.14",
"ws": "^8.21.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^26.1.1",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^4.1.10",
"concurrently": "^10.0.3",
"cross-env": "^10.1.0",
"happy-dom": "^20.10.6",
"prettier": "^3.9.5",
"tsx": "^4.23.0",
"typescript": "^7.0.2",
"vite": "^8.1.4",
"vite-plugin-singlefile": "^2.3.3",
"vitest": "^4.1.10"
}
}