mirror of
https://github.com/martinlegend/neogdsync.git
synced 2026-07-22 06:08:29 +00:00
The refresh token grants full read/write/delete access to the user's Drive. The settings-tab field displayed it in plaintext, so anyone screenshotting or screen-sharing the NeoGDSync settings tab would leak it. Masked as a password input with a show/hide toggle. Claude-Session: https://claude.ai/code/session_011DimwV9zDr1ViCXRCZPxC9 Co-authored-by: Claude <noreply@anthropic.com>
26 lines
758 B
JSON
26 lines
758 B
JSON
{
|
|
"name": "neogdsync",
|
|
"version": "1.0.10",
|
|
"description": "Lightweight Google Drive sync plugin for Obsidian",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"build": "node esbuild.config.mjs production",
|
|
"dev": "node esbuild.config.mjs",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "vitest run"
|
|
},
|
|
"keywords": ["obsidian", "google-drive", "sync"],
|
|
"author": "martinlegend",
|
|
"license": "MIT",
|
|
"type": "commonjs",
|
|
"devDependencies": {
|
|
"@types/node": "^25.6.0",
|
|
"@typescript-eslint/eslint-plugin": "^8.58.2",
|
|
"@typescript-eslint/parser": "^8.58.2",
|
|
"esbuild": "^0.28.0",
|
|
"eslint": "^9.39.4",
|
|
"eslint-plugin-obsidianmd": "github:obsidianmd/eslint-plugin#master",
|
|
"obsidian": "^1.13.1",
|
|
"vitest": "^4.1.10"
|
|
}
|
|
}
|