-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.5 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
{
"name": "perch",
"version": "2.3.0",
"description": "Perch — Server intelligence layer. Watches, diagnoses, heals. Any webapp, starting with WordPress.",
"main": "dist/index.js",
"type": "module",
"private": true,
"license": "MIT",
"author": "Aditya Sharma (https://adityaarsharma.com)",
"repository": {
"type": "git",
"url": "https://github.com/adityaarsharma/perch"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"perch",
"runcloud",
"mcp",
"model-context-protocol",
"server-management",
"server-monitoring",
"server-intelligence",
"wordpress",
"auto-healing",
"claude",
"ssh",
"telegram",
"wordpress-expert",
"uptime-monitoring"
],
"files": [
"dist/"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"api": "node dist/api/server.js",
"api:dev": "tsx src/api/server.ts",
"dev": "tsx src/index.ts",
"init": "bash scripts/install.sh",
"setup": "bash scripts/setup.sh",
"update": "bash scripts/update.sh",
"vault": "tsx scripts/perch-vault.ts",
"import-runcloud": "tsx scripts/import-runcloud-servers.ts",
"seed-from-server": "tsx scripts/seed-from-server.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"better-sqlite3": "^11.10.0",
"ssh2": "^1.16.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20.0.0",
"@types/ssh2": "^1.15.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
}
}