mirror of
https://github.com/linkwiseapp/obsidian-linkwise.git
synced 2026-07-22 08:28:34 +00:00
Correct the release version from 1.0.4 back to 1.0.2 (no version jump); drop the 1.0.4 entry from versions.json. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
35 lines
854 B
JSON
35 lines
854 B
JSON
{
|
|
"name": "linkwise",
|
|
"version": "1.0.2",
|
|
"description": "Sync your Linkwise links, highlights and collections into your Obsidian vault.",
|
|
"main": "main.js",
|
|
"type": "module",
|
|
"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 ."
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"linkwise",
|
|
"sync",
|
|
"highlights"
|
|
],
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.39.4",
|
|
"@types/node": "^22.15.17",
|
|
"esbuild": "0.25.5",
|
|
"eslint": "^9.39.4",
|
|
"eslint-plugin-obsidianmd": "^0.4.0",
|
|
"globals": "^17.6.0",
|
|
"jiti": "^2.6.1",
|
|
"obsidian": "^1.13.1",
|
|
"typescript": "^5.8.3",
|
|
"typescript-eslint": "^8.59.1"
|
|
},
|
|
"dependencies": {
|
|
"qrcode-generator": "^1.4.4"
|
|
}
|
|
}
|