-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 845 Bytes
/
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
{
"name": "obsidian-github-sync",
"version": "0.0.6",
"description": "A plugin to sync a Github repository with an Obsidian vault",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs"
},
"keywords": [],
"author": "Silvano Cerza",
"license": "AGPL-3.0-only",
"devDependencies": {
"@types/node": "^22.10.5",
"@types/react": "^19.0.4",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"builtin-modules": "^4.0.0",
"esbuild": "^0.24.2",
"obsidian": "^1.7.2",
"tslib": "^2.8.1",
"typescript": "^5.7.2"
},
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
}
}