2025-02-01 14:20:04 +00:00
|
|
|
{
|
2025-02-02 05:11:40 +00:00
|
|
|
"name": "automatic-linker",
|
2025-12-20 12:27:22 +00:00
|
|
|
"version": "3.2.1",
|
2025-02-07 09:56:50 +00:00
|
|
|
"description": "Automatically converts plain text file references into Obsidian wiki links (i.e. `[[...]]`)",
|
2025-02-01 14:20:04 +00:00
|
|
|
"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",
|
2025-02-15 14:00:43 +00:00
|
|
|
"test": "VITE_CJS_IGNORE_WARNING=true vitest run",
|
2025-02-22 07:36:42 +00:00
|
|
|
"test:watch": "VITE_CJS_IGNORE_WARNING=true vitest",
|
2025-12-20 12:38:44 +00:00
|
|
|
"tsc": "tsc -noEmit -skipLibCheck",
|
2025-12-20 11:12:19 +00:00
|
|
|
"tsc:watch": "tsc -noEmit -skipLibCheck --watch",
|
2025-12-20 11:25:54 +00:00
|
|
|
"lint": "eslint .",
|
|
|
|
|
"lint:watch": "nodemon --watch src --ext js,ts --exec \"npm run lint\""
|
2025-02-01 14:20:04 +00:00
|
|
|
},
|
|
|
|
|
"keywords": [],
|
|
|
|
|
"author": "",
|
2025-04-24 14:05:22 +00:00
|
|
|
"license": "Appache-2.0",
|
2025-02-01 14:20:04 +00:00
|
|
|
"devDependencies": {
|
2025-12-20 12:40:46 +00:00
|
|
|
"@eslint/js": "^9.39.2",
|
2025-12-20 11:40:18 +00:00
|
|
|
"@stylistic/eslint-plugin": "^5.6.1",
|
2025-12-06 07:41:27 +00:00
|
|
|
"@types/diff-match-patch": "^1.0.36",
|
2025-02-02 02:00:13 +00:00
|
|
|
"@types/node": "^22.12.0",
|
2025-12-20 11:12:19 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^8.18.2",
|
|
|
|
|
"@typescript-eslint/parser": "^8.18.2",
|
2025-02-01 14:20:04 +00:00
|
|
|
"builtin-modules": "3.3.0",
|
|
|
|
|
"esbuild": "0.17.3",
|
2025-12-20 11:12:19 +00:00
|
|
|
"eslint": "^9.17.0",
|
|
|
|
|
"globals": "^16.5.0",
|
2025-12-20 11:25:54 +00:00
|
|
|
"nodemon": "^3.1.11",
|
2025-02-01 14:20:04 +00:00
|
|
|
"obsidian": "latest",
|
2025-02-02 01:55:14 +00:00
|
|
|
"obsidian-typings": "^2.15.0",
|
2025-02-15 06:55:26 +00:00
|
|
|
"prettier": "^3.5.1",
|
2025-02-01 14:20:04 +00:00
|
|
|
"tslib": "2.4.0",
|
2025-12-20 11:12:19 +00:00
|
|
|
"typescript": "^5.7.2",
|
|
|
|
|
"typescript-eslint": "^8.18.2",
|
2025-02-02 02:23:53 +00:00
|
|
|
"vitest": "^3.0.4"
|
2025-02-02 04:37:48 +00:00
|
|
|
},
|
2025-02-02 04:53:11 +00:00
|
|
|
"optionalDependencies": {
|
|
|
|
|
"@rollup/rollup-linux-x64-gnu": "4.6.1"
|
2025-02-03 01:36:27 +00:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2025-12-06 08:21:02 +00:00
|
|
|
"@codemirror/state": "6.5.0",
|
2025-02-09 06:38:20 +00:00
|
|
|
"@types/async-lock": "^1.4.2",
|
2025-12-06 07:41:27 +00:00
|
|
|
"async-lock": "^1.4.1",
|
|
|
|
|
"diff-match-patch": "^1.0.5"
|
2025-02-02 04:53:11 +00:00
|
|
|
}
|
2025-02-01 14:20:04 +00:00
|
|
|
}
|