mirror of
https://github.com/sotashimozono/obsidian-remote-ssh.git
synced 2026-07-22 06:52:07 +00:00
PR #294 migrated 5 root-level docs into docs/en/. This sweeps the stale path references that lived outside the moved files: - README.md, CONTRIBUTING.md, SECURITY.md: link/cite paths updated from docs/architecture-*.md, docs/plugin-compatibility.md, docs/testing-strategy.md to their new docs/en/ locations. - README.md: "pre-1.0" status block replaced with the current "1.0 released, community-store listing pending" framing — aligns with the same edit landed in docs/en/index.md. - plugin/src code-comment references (AdapterManager, SftpDataAdapter, main.ts, tests/compat/CompatVault.ts) updated to the new doc paths. - docs/en/index.md, docs/en/architecture/{index,shadow-vault}.md, docs/en/contributing/documentation.md: small text-level catch-up edits (path references, status note) that were missed in #294.
61 lines
2.5 KiB
JSON
61 lines
2.5 KiB
JSON
{
|
|
"name": "obsidian-remote-ssh",
|
|
"version": "1.0.44-beta.4",
|
|
"description": "VS Code Remote SSH-like experience for Obsidian",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "node esbuild.config.mjs production",
|
|
"dev:install": "node scripts/dev-install.mjs",
|
|
"build:install": "node esbuild.config.mjs production && node scripts/dev-install.mjs",
|
|
"build:server": "node scripts/build-server.mjs",
|
|
"build:full": "node scripts/build-server.mjs && node esbuild.config.mjs production && node scripts/dev-install.mjs",
|
|
"cdp:tail": "node scripts/cdp-tail.mjs",
|
|
"test": "vitest run",
|
|
"test:coverage": "vitest run --coverage",
|
|
"test:replay": "node scripts/replay-prev-tests.mjs",
|
|
"test:integration": "vitest run --config vitest.integration.config.ts --exclude **/perf.sync.bench.test.ts",
|
|
"test:integration:bench": "vitest run --config vitest.integration.config.ts tests/integration/perf.sync.bench.test.ts",
|
|
"test:e2e": "playwright test --config e2e/playwright.config.ts",
|
|
"test:e2e:reflect": "playwright test --config e2e/playwright.config.ts e2e/reflect.spec.ts",
|
|
"sshd:start": "node scripts/start-test-sshd.mjs",
|
|
"sshd:stop": "node scripts/stop-test-sshd.mjs",
|
|
"lint": "eslint \"src/**/*.ts\"",
|
|
"bump:beta:start": "npm version prepatch --preid=beta --no-git-tag-version",
|
|
"bump:beta": "npm version prerelease --preid=beta --no-git-tag-version",
|
|
"bump:stable": "node scripts/bump-stable.mjs",
|
|
"version": "node scripts/bump-version.mjs && git add package.json package-lock.json manifest.json versions.json ../manifest.json ../manifest-beta.json ../versions.json"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"ssh",
|
|
"sftp",
|
|
"remote"
|
|
],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"dependencies": {
|
|
"@xterm/addon-fit": "^0.11.0",
|
|
"@xterm/xterm": "^5.5.0",
|
|
"ssh2": "^1.17.0"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint-community/eslint-plugin-eslint-comments": "^4.7.1",
|
|
"@playwright/test": "^1.59.1",
|
|
"@types/node": "^25.6.0",
|
|
"@types/ssh2": "^1.11.19",
|
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
"@typescript-eslint/parser": "^8.0.0",
|
|
"@vitest/coverage-v8": "^4.1.5",
|
|
"esbuild": "^0.28.0",
|
|
"eslint": "^10.3.0",
|
|
"eslint-plugin-obsidianmd": "^0.2.9",
|
|
"jsdom": "^29.1.1",
|
|
"obsidian": "latest",
|
|
"typescript": "^6.0.3",
|
|
"vitest": "^4.1.5"
|
|
}
|
|
}
|