mirror of
https://github.com/uppinote20/obsidian-auto-note-importer.git
synced 2026-07-22 05:48:42 +00:00
44 lines
1.6 KiB
JSON
44 lines
1.6 KiB
JSON
{
|
|
"name": "auto-note-importer",
|
|
"version": "1.0.1",
|
|
"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": "^5.29.0",
|
|
"@typescript-eslint/parser": "^5.29.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": "4.7.4",
|
|
"vitest": "^0.34.6"
|
|
}
|
|
}
|