forked from Vinzent03/obsidian-git
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.16 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "obsidian-git",
"version": "2.24.3",
"description": "Integrate Git version control with automatic backup and other advanced features in Obsidian.md",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs dev",
"build": "node esbuild.config.mjs production",
"release": "standard-version",
"lint": "eslint --ext .ts,.svelte src",
"format": "prettier --check src",
"tsc": "tsc --noEmit",
"svelte": "svelte-check",
"all": "pnpm run tsc && pnpm run svelte && pnpm run format && pnpm run lint"
},
"keywords": [],
"author": "Vinzent03",
"license": "MIT",
"standard-version": {
"t": ""
},
"engines": {
"node": ">=18",
"pnpm": ">=9"
},
"devDependencies": {
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.28.4",
"@types/debug": "^4.1.12",
"@types/deep-equal": "^1.0.4",
"@types/diff": "^5.2.1",
"@types/hogan.js": "^3.0.5",
"@types/node": "^20.14.10",
"@typescript-eslint/eslint-plugin": "7.16.0",
"@typescript-eslint/parser": "7.16.0",
"esbuild": "^0.23.0",
"esbuild-svelte": "^0.8.1",
"eslint": "^8.57.0",
"eslint-plugin-svelte": "^2.41.0",
"obsidian": "^1.5.7",
"prettier": "3.3.2",
"prettier-plugin-svelte": "^3.2.5",
"sass": "^1.77.6",
"scss": "^0.2.4",
"standard-version": "^9.5.0",
"svelte": "^4.2.18",
"svelte-check": "^3.8.4",
"svelte-preprocess": "^6.0.1",
"tslib": "^2.6.3",
"typescript": "^5.5.3"
},
"dependencies": {
"buffer": "^6.0.3",
"css-color-converter": "^2.0.0",
"debug": "^4.3.5",
"deep-equal": "^2.2.3",
"diff": "^5.2.0",
"diff2html": "^3.4.48",
"isomorphic-git": "^1.27.1",
"js-sha256": "^0.9.0",
"obsidian-community-lib": "github:Vinzent03/obsidian-community-lib#upgrade",
"simple-git": "github:Vinzent03/git-js#release",
"supports-color": "^9.4.0"
},
"moduleFileExtensions": [
"js",
"ts",
"svelte"
]
}