generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.27 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "obsidian-file-diff",
"version": "1.1.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",
"format": "prettier --write \"**/*.{ts,tsx}\"",
"lint": "eslint src",
"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",
"obsidian": "latest"
},
"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",
"eslint": "^8.33.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.8.3",
"react": "^18.2.0",
"tslib": "2.4.0",
"typescript": "4.7.4",
"vitest": "^0.28.3"
}
}