alberti42_obsidian-import-a.../package.json

32 lines
850 B
JSON
Raw Permalink Normal View History

2024-04-29 20:03:06 +00:00
{
"name": "obsidian-import-attachments-plus",
"version": "1.0.0",
"description": "Import attachments by moving them into the vault.",
"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"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
2024-05-01 14:46:18 +00:00
"@types/node": "^16.18.96",
2024-04-30 08:16:34 +00:00
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
2024-05-01 10:11:36 +00:00
"@types/uuid": "^9.0.8",
2024-04-29 20:03:06 +00:00
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.17.3",
2024-05-04 20:08:53 +00:00
"esbuild-plugin-copy": "^2.1.1",
2024-04-29 20:03:06 +00:00
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "^4.7.4"
2024-05-01 10:11:36 +00:00
},
"dependencies": {
"uuid": "^9.0.1"
2024-04-29 20:03:06 +00:00
}
}