mirror of
https://github.com/sotashimozono/obsidian-remote-ssh.git
synced 2026-07-22 06:52:07 +00:00
Bumps the dev-deps group in /plugin with 4 updates: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node), [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin), [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) and [eslint](https://github.com/eslint/eslint). Updates `@types/node` from 25.9.2 to 25.9.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Updates `@typescript-eslint/eslint-plugin` from 8.60.1 to 8.61.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.61.0/packages/eslint-plugin) Updates `@typescript-eslint/parser` from 8.60.1 to 8.61.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.61.0/packages/parser) Updates `eslint` from 10.4.1 to 10.5.0 - [Release notes](https://github.com/eslint/eslint/releases) - [Commits](https://github.com/eslint/eslint/compare/v10.4.1...v10.5.0) --- updated-dependencies: - dependency-name: "@types/node" dependency-version: 25.9.3 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-deps - dependency-name: "@typescript-eslint/eslint-plugin" dependency-version: 8.61.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dev-deps - dependency-name: "@typescript-eslint/parser" dependency-version: 8.61.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dev-deps - dependency-name: eslint dependency-version: 10.5.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dev-deps ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: sotashimozono <shimozono-sota631@g.ecc.u-tokyo.ac.jp>
62 lines
2.4 KiB
JSON
62 lines
2.4 KiB
JSON
{
|
|
"name": "obsidian-remote-ssh",
|
|
"version": "1.1.2",
|
|
"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": "^6.0.0",
|
|
"ssh2": "^1.17.0"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint-community/eslint-plugin-eslint-comments": "^4.7.2",
|
|
"@playwright/test": "^1.60.0",
|
|
"@types/node": "^25.9.3",
|
|
"@types/ssh2": "^1.11.19",
|
|
"@typescript-eslint/eslint-plugin": "^8.61.0",
|
|
"@typescript-eslint/parser": "^8.59.2",
|
|
"@vitest/coverage-v8": "^4.1.8",
|
|
"esbuild": "^0.28.1",
|
|
"eslint": "^10.5.0",
|
|
"eslint-plugin-obsidianmd": "^0.3.0",
|
|
"fast-check": "^4.8.0",
|
|
"jsdom": "^29.1.1",
|
|
"obsidian": "~1.12.3",
|
|
"typescript": "^6.0.3",
|
|
"vitest": "^4.1.5"
|
|
}
|
|
}
|