uppinote20_obsidian-auto-no.../package.json
2026-06-21 00:53:27 +09:00

44 lines
1.6 KiB
JSON

{
"name": "auto-note-importer",
"version": "1.0.2",
"description": "Sync notes bidirectionally between your vault and Airtable, SeaTable, or Supabase databases.",
"main": "main.js",
"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 ./src --ext .ts",
"typecheck": "tsc -noEmit -skipLibCheck",
"test": "vitest",
"test:run": "vitest run",
"test:e2e": "node tests/e2e/run-e2e.mjs --cleanup",
"test:e2e:settings": "node tests/e2e/run-settings-e2e.mjs",
"test:e2e:full": "bash tests/e2e/start-e2e.sh --cleanup",
"test:e2e:seatable": "node tests/e2e/run-seatable-e2e.mjs --cleanup",
"test:e2e:seatable:settings": "node tests/e2e/run-seatable-settings-e2e.mjs",
"test:e2e:seatable:full": "E2E_RUNNER=tests/e2e/run-seatable-e2e.mjs bash tests/e2e/start-e2e.sh --cleanup",
"test:e2e:supabase": "node tests/e2e/run-supabase-e2e.mjs --cleanup",
"test:e2e:supabase:settings": "node tests/e2e/run-supabase-settings-e2e.mjs",
"test:e2e:supabase:full": "E2E_RUNNER=tests/e2e/run-supabase-e2e.mjs bash tests/e2e/start-e2e.sh --cleanup"
},
"keywords": [
"obsidian-plugin",
"note-import",
"auto-sync"
],
"author": "uppinote",
"license": "MIT",
"devDependencies": {
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^8.61.0",
"@typescript-eslint/parser": "^8.61.0",
"@vitest/coverage-v8": "^0.34.6",
"esbuild": "^0.25.9",
"eslint": "^8.57.1",
"obsidian": "latest",
"prettier": "^3.5.3",
"tslib": "2.4.0",
"typescript": "5.9.3",
"vitest": "^0.34.6"
}
}