mirror of
https://github.com/eoinhurrell/obsidian-inboxer.git
synced 2026-07-22 05:46:47 +00:00
31 lines
788 B
JSON
31 lines
788 B
JSON
{
|
|
"name": "inboxer",
|
|
"version": "1.5.0",
|
|
"description": "An Obsidian plugin to add entries to INBOX and TIMELINE sections",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"test": "bun test",
|
|
"dev": "bun esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && bun esbuild.config.mjs production",
|
|
"version": "bun version-bump.mjs && git add manifest.json versions.json"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"plugin"
|
|
],
|
|
"author": "Eoin Hurrell",
|
|
"devDependencies": {
|
|
"@types/bun": "^1.2.9",
|
|
"@types/node": "^16.11.6",
|
|
"@typescript-eslint/eslint-plugin": "5.29.0",
|
|
"@typescript-eslint/parser": "5.29.0",
|
|
"builtin-modules": "3.3.0",
|
|
"esbuild": "0.17.3",
|
|
"obsidian": "latest",
|
|
"tslib": "2.4.0",
|
|
"typescript": "4.7.4"
|
|
},
|
|
"dependencies": {
|
|
"@types/jest": "^29.5.14"
|
|
}
|
|
}
|