kdnk_obsidian-automatic-linker/package.json
Kodai Nakamura 48df04a79f 1.6.2
2025-03-09 21:29:01 +09:00

38 lines
1.1 KiB
JSON

{
"name": "automatic-linker",
"version": "1.6.2",
"description": "Automatically converts plain text file references into Obsidian wiki links (i.e. `[[...]]`)",
"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",
"test": "VITE_CJS_IGNORE_WARNING=true vitest run",
"test:watch": "VITE_CJS_IGNORE_WARNING=true vitest",
"tsc:watch": "tsc -noEmit -skipLibCheck --watch"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.12.0",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.17.3",
"obsidian": "latest",
"obsidian-typings": "^2.15.0",
"prettier": "^3.5.1",
"tslib": "2.4.0",
"typescript": "4.7.4",
"vitest": "^3.0.4"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.6.1"
},
"dependencies": {
"@types/async-lock": "^1.4.2",
"async-lock": "^1.4.1",
"just-throttle": "^4.2.0"
}
}