kdnk_obsidian-automatic-linker/package.json

34 lines
903 B
JSON
Raw Normal View History

2025-02-01 14:20:04 +00:00
{
"name": "automatic-linker",
2025-02-05 10:49:55 +00:00
"version": "0.6.0",
2025-02-01 14:20:04 +00:00
"description": "This is a sample plugin for Obsidian (https://obsidian.md)",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
2025-02-02 02:23:53 +00:00
"version": "node version-bump.mjs && git add manifest.json versions.json",
"test": "VITE_CJS_IGNORE_WARNING=true vitest"
2025-02-01 14:20:04 +00:00
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
2025-02-02 02:00:13 +00:00
"@types/node": "^22.12.0",
2025-02-01 14:20:04 +00:00
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.17.3",
"obsidian": "latest",
2025-02-02 01:55:14 +00:00
"obsidian-typings": "^2.15.0",
2025-02-01 14:20:04 +00:00
"tslib": "2.4.0",
2025-02-02 02:23:53 +00:00
"typescript": "4.7.4",
"vitest": "^3.0.4"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.6.1"
},
"dependencies": {
"just-throttle": "^4.2.0"
}
2025-02-01 14:20:04 +00:00
}