tmlnv_obsidian-telegram-bridge/package.json
tmlnv b70131db90 flatten plugin/ into repo root for obsidian community plugin layout
- move src/, test/, esbuild.config.mjs, styles.css, tsconfig.json,
  package.json, package-lock.json from plugin/ to repo root
- merge plugin/package.json into root package.json (deps + scripts)
- drop esbuild mirror-files plugin (manifest.json/versions.json no
  longer need to be copied; they live next to the build output)
- update release workflow, gitignore, README, scripts to match
- swap fetch() for obsidian's requestUrl in setupBot per plugin
  guidelines
2026-04-29 22:35:55 +03:00

28 lines
785 B
JSON

{
"name": "telegram-bridge",
"version": "0.1.0",
"description": "Sync messages from Telegram into your vault through a self-hosted Supabase backend.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"test": "vitest run",
"test:watch": "vitest",
"verify": "node scripts/verify-local-env.mjs",
"bootstrap:supabase": "node scripts/bootstrap-supabase.mjs"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@types/node": "^20.17.30",
"builtin-modules": "^3.3.0",
"esbuild": "^0.25.1",
"obsidian": "latest",
"typescript": "^5.8.2",
"vitest": "^3.0.8"
},
"dependencies": {
"@supabase/supabase-js": "^2.49.8"
}
}