mirror of
https://github.com/kdnk/obsidian-automatic-linker.git
synced 2026-07-22 12:00:30 +00:00
49 lines
1.5 KiB
JSON
49 lines
1.5 KiB
JSON
{
|
|
"name": "automatic-linker",
|
|
"version": "4.5.0",
|
|
"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": "tsc -noEmit -skipLibCheck",
|
|
"tsc:watch": "tsc -noEmit -skipLibCheck --watch",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"lint:watch": "nodemon --watch src --ext js,ts --exec \"npm run lint\""
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "Appache-2.0",
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.39.2",
|
|
"@stylistic/eslint-plugin": "^5.6.1",
|
|
"@types/diff-match-patch": "^1.0.36",
|
|
"@types/node": "^22.12.0",
|
|
"@typescript-eslint/eslint-plugin": "^8.18.2",
|
|
"@typescript-eslint/parser": "^8.18.2",
|
|
"esbuild": "0.17.3",
|
|
"eslint": "^9.17.0",
|
|
"globals": "^16.5.0",
|
|
"nodemon": "^3.1.11",
|
|
"obsidian": "latest",
|
|
"obsidian-typings": "^2.15.0",
|
|
"tslib": "2.4.0",
|
|
"typescript": "^5.7.2",
|
|
"typescript-eslint": "^8.18.2",
|
|
"vitest": "^3.0.4"
|
|
},
|
|
"optionalDependencies": {
|
|
"@rollup/rollup-linux-x64-gnu": "4.6.1"
|
|
},
|
|
"dependencies": {
|
|
"@codemirror/state": "6.5.0",
|
|
"@codemirror/view": "^6.38.6",
|
|
"@types/async-lock": "^1.4.2",
|
|
"async-lock": "^1.4.1",
|
|
"diff-match-patch": "^1.0.5"
|
|
}
|
|
}
|