broekema41_obsidian-vcf-con.../package.json

45 lines
1.5 KiB
JSON
Raw Normal View History

2022-12-09 22:00:16 +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",
"test": "vitest",
"test:run": "vitest run",
"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
},
"keywords": [
"obsidian",
"contacts",
"vcard"
],
2022-12-09 22:00:16 +00:00
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.15.29",
2022-12-09 23:08:03 +00:00
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@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",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-simple-import-sort": "^13.0.0",
"obsidian": "^1.8.7",
2022-12-09 22:00:16 +00:00
"tslib": "2.4.0",
"typescript": "6.0.3",
"vitest": "^4.1.8"
2022-12-09 23:08:03 +00:00
},
"dependencies": {
"@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
}
}