2022-12-09 22:00:16 +00:00
{
2025-03-15 17:45:41 +00:00
"name" : "vcf-contacts" ,
2026-06-01 19:19:24 +00:00
"version" : "2.4.2" ,
2025-03-14 16:35:36 +00:00
"description" : "Effortlessly manage, organize, and interact with your contacts inside Obsidian. Import, export, and structure vCard (VCF) files seamlessly while keeping all contact details accessible in your knowledge base. Includes click-to-call, right-click copy, structured metadata, and more!" ,
2022-12-09 22:00:16 +00:00
"main" : "main.js" ,
"scripts" : {
"dev" : "node esbuild.config.mjs" ,
"build" : "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production" ,
2025-06-05 10:17:52 +00:00
"test" : "vitest" ,
"test:run" : "vitest run" ,
2026-04-13 11:50:46 +00:00
"test:coverage" : "vitest run --coverage" ,
2026-04-13 13:24:39 +00:00
"patch" : "node release-notes.mjs patch && node version-bump.mjs patch" ,
"minor" : "node release-notes.mjs minor && node version-bump.mjs minor" ,
"major" : "node release-notes.mjs major && node version-bump.mjs major"
2022-12-09 22:00:16 +00:00
} ,
2025-04-15 20:43:09 +00:00
"keywords" : [
"obsidian" ,
"contacts" ,
"vcard"
] ,
2022-12-09 22:00:16 +00:00
"author" : "" ,
"license" : "MIT" ,
"devDependencies" : {
2025-06-05 10:17:52 +00:00
"@types/node" : "^22.15.29" ,
2022-12-09 23:08:03 +00:00
"@types/react" : "^18.0.26" ,
"@types/react-dom" : "^18.0.9" ,
2026-06-01 19:18:55 +00:00
"@typescript-eslint/eslint-plugin" : "8.60.0" ,
"@typescript-eslint/parser" : "8.60.0" ,
"@vitest/coverage-istanbul" : "^4.1.8" ,
2022-12-09 22:00:16 +00:00
"builtin-modules" : "3.3.0" ,
2025-05-09 16:55:52 +00:00
"esbuild" : "^0.25.2" ,
2025-04-15 20:43:09 +00:00
"eslint-plugin-import" : "^2.31.0" ,
2026-06-01 19:18:55 +00:00
"eslint-plugin-simple-import-sort" : "^13.0.0" ,
2025-05-24 20:34:28 +00:00
"obsidian" : "^1.8.7" ,
2022-12-09 22:00:16 +00:00
"tslib" : "2.4.0" ,
2026-06-01 19:18:55 +00:00
"typescript" : "6.0.3" ,
"vitest" : "^4.1.8"
2022-12-09 23:08:03 +00:00
} ,
"dependencies" : {
2025-07-09 08:18:59 +00:00
"@preact/signals-core" : "^1.11.0" ,
2022-12-09 23:08:03 +00:00
"react" : "^18.2.0" ,
"react-dom" : "^18.2.0"
2022-12-09 22:00:16 +00:00
}
2025-03-08 17:55:18 +00:00
}