-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.42 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 3.42 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "docs-ssh",
"version": "0.3.0",
"description": "A shell-native workspace over SSH for AI-agent work notes.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/trknhr/docs-ssh.git"
},
"homepage": "https://github.com/trknhr/docs-ssh#readme",
"bugs": {
"url": "https://github.com/trknhr/docs-ssh/issues"
},
"keywords": [
"ai-agents",
"ssh",
"documentation",
"workspace",
"cli"
],
"files": [
"dist/src",
"README.md",
"LICENSE",
"NOTICE"
],
"publishConfig": {
"access": "public"
},
"type": "module",
"bin": {
"docs-ssh": "dist/src/cli.js"
},
"packageManager": "pnpm@10.24.0",
"engines": {
"node": ">=24 <25"
},
"scripts": {
"build": "pnpm run build:server && pnpm run build:viewer",
"clean:server": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"build:server": "pnpm run clean:server && tsc -p tsconfig.build.json",
"build:viewer": "vite build",
"prepack": "pnpm run build:server",
"cli": "pnpm run build:server && node dist/src/cli.js",
"dev": "tsx src/server.ts",
"dev:viewer": "vite",
"dev:watch": "tsx watch src/server.ts",
"helper:agents": "pnpm run build:server && node dist/src/cli.js agents",
"helper:setup": "pnpm run build:server && node dist/src/cli.js setup",
"helper:skill": "pnpm run build:server && node dist/src/cli.js skill",
"ingest": "pnpm run build:server && node dist/src/cli.js ingest",
"agents:append": "pnpm run build:server && node dist/src/cli.js agents --output AGENTS.md --append",
"bench:multihop:agent": "tsx bench/multihop-rag/retrieval/agent-runner.ts",
"bench:multihop:fetch": "tsx bench/multihop-rag/fetch.ts",
"bench:multihop:materialize": "tsx bench/multihop-rag/materialize.ts",
"bench:multihop:run": "tsx bench/multihop-rag/run.ts",
"bench:multihop:score": "tsx bench/multihop-rag/score.ts",
"start": "node dist/src/server.js",
"skill:write": "pnpm run build:server && node dist/src/cli.js skill --output .agents/skills/docs-ssh/SKILL.md",
"smoke": "pnpm test && pnpm run build && node dist/src/cli.js status --json",
"sources:list": "pnpm run build:server && node dist/src/cli.js sources list",
"generate:host-key": "tsx scripts/generate-host-key.ts",
"generate:host-key:local": "tsx scripts/generate-host-key.ts > ssh_host_key",
"site:build": "pnpm run site:check && vite build --config site/vite.config.ts",
"site:check": "tsc -p site/tsconfig.json --noEmit",
"site:dev": "vite --config site/vite.config.ts",
"site:preview": "vite preview --config site/vite.config.ts",
"test": "vitest run"
},
"dependencies": {
"better-sqlite3": "^12.9.0",
"chalk": "^5.6.2",
"jose": "^6.2.2",
"just-bash": "^2.14.0",
"ssh2": "^1.16.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24.12.4",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/ssh2": "^1.15.5",
"@vitejs/plugin-react": "^6.0.1",
"allotment": "^1.20.5",
"dompurify": "^3.3.3",
"marked": "^17.0.6",
"react": "^19.2.4",
"react-arborist": "^3.4.3",
"react-dom": "^19.2.4",
"shiki": "^4.0.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vite": "^8.0.3",
"vitest": "^3.2.4"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"ssh2"
]
}
}