mirror of
https://github.com/dotwee/obsidian-raindropio-plugin.git
synced 2026-07-22 06:50:29 +00:00
Bumps the dependencies group with 3 updates: [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js), [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) and [esbuild](https://github.com/evanw/esbuild). Updates `@eslint/js` from 9.39.4 to 10.0.1 - [Release notes](https://github.com/eslint/eslint/releases) - [Commits](https://github.com/eslint/eslint/commits/v10.0.1/packages/js) 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 `esbuild` from 0.28.0 to 0.28.1 - [Release notes](https://github.com/evanw/esbuild/releases) - [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md) - [Commits](https://github.com/evanw/esbuild/compare/v0.28.0...v0.28.1) --- updated-dependencies: - dependency-name: "@eslint/js" dependency-version: 10.0.1 dependency-type: direct:development update-type: version-update:semver-major dependency-group: dependencies - dependency-name: "@types/node" dependency-version: 25.9.3 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: esbuild dependency-version: 0.28.1 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
49 lines
1.3 KiB
JSON
49 lines
1.3 KiB
JSON
{
|
|
"name": "obsidian-raindropio-plugin",
|
|
"version": "1.0.4",
|
|
"description": "Browse Raindrop.io links in notes with note-aware and configurable search filters.",
|
|
"main": "main.js",
|
|
"type": "module",
|
|
"author": "Lukas '@dotWee' Wolfsteiner <lukas@wolfsteiner.media> (http://lukas.wolfsteiner.media/)",
|
|
"homepage": "https://github.com/dotWee/obsidian-raindropio-plugin",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/dotWee/obsidian-raindropio-plugin.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/dotWee/obsidian-raindropio-plugin/issues"
|
|
},
|
|
"license": "WTFPL",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json",
|
|
"lint": "eslint .",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"obsidian-plugin",
|
|
"raindrop.io",
|
|
"bookmarks"
|
|
],
|
|
"devDependencies": {
|
|
"@eslint/js": "10.0.1",
|
|
"@types/jest": "^30.0.0",
|
|
"@types/node": "^25.9.3",
|
|
"esbuild": "0.28.1",
|
|
"eslint-plugin-obsidianmd": "0.3.0",
|
|
"globals": "17.6.0",
|
|
"jest": "^30.4.2",
|
|
"jest-environment-jsdom": "^30.4.1",
|
|
"jiti": "2.7.0",
|
|
"ts-jest": "^29.4.11",
|
|
"tslib": "2.8.1",
|
|
"typescript": "^6.0.3",
|
|
"typescript-eslint": "8.61.0"
|
|
},
|
|
"dependencies": {
|
|
"obsidian": "latest"
|
|
}
|
|
}
|