-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.27 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.27 KB
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
{
"name": "obsidian-msgraph-plugin",
"version": "0.9.9",
"description": "This plugin allows to query MSGraph from obsidian.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "cd node_modules/fetch && npm i && cd ../../ && tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"postinstall": "patch-package"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@microsoft/microsoft-graph-types": "^2.38.0",
"@types/luxon": "^3.3.1",
"@types/node": "^20.5.0",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"builtin-modules": "^3.3.0",
"electron": "^25.5.0",
"esbuild": "0.19.2",
"obsidian": "latest",
"patch-package": "^8.0.0",
"tslib": "2.6.1",
"typescript": "5.1.6"
},
"dependencies": {
"@azure/identity": "^3.3.0",
"@azure/msal-node": "^2.0.1",
"@azure/msal-node-extensions": "^1.0.1",
"@electron/remote": "^2.0.10",
"@microsoft/microsoft-graph-client": "^3.0.5",
"eta": "^3.1.0",
"ews-javascript-api": "^0.12.0",
"iconv-lite": "^0.6.2",
"luxon": "^3.4.0",
"fetch-ah": "git://git@github.com/anhi/andris9_fetch.git"
}
}