friebetill_obsidian-file-diff/package.json
2023-01-28 18:20:40 +08:00

33 lines
820 B
JSON

{
"name": "obsidian-file-diff",
"version": "0.0.1",
"description": "Shows the differences between two files.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"test": "vitest",
"coverage": "vitest run --coverage",
"release": "./scripts/release.sh"
},
"keywords": [
"obsidian"
],
"author": "Till Friebe",
"authorUrl": "https://friebetill.github.io/",
"license": "MIT",
"dependencies": {
"diff": "^5.1.0"
},
"devDependencies": {
"@types/diff": "^5.0.2",
"@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"
}
}