forked from LumosLovegood/obsidian-mstodo-sync
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
41 lines (41 loc) · 1.25 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
{
"name": "obsidian-mstodo-sync",
"version": "1.0.1",
"description": "This is a MsTodoSync plugin for Obsidian (https://obsidian.md)",
"main": "main.js",
"scripts": {
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"dev": "node esbuild.config.mjs",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"lint": "eslint ./src --ext .ts",
"lint:fix": "eslint ./src --ext .ts --fix",
"prettier-format": "prettier --config .prettierrc ./src/**/*.ts --write"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^16.11.6",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.14.47",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-no-loops": "^0.3.0",
"eslint-plugin-prettier": "^4.2.1",
"obsidian": "latest",
"prettier": "^2.7.1",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"@azure/msal-node": "^1.14.2",
"@microsoft/microsoft-graph-client": "^3.0.2",
"@microsoft/microsoft-graph-types": "^2.25.0",
"eventemitter2": "^6.4.5",
"node-fetch": "^2.6.1"
}
}