-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 961 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 961 Bytes
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
{
"name": "obsidian-granola-sync",
"version": "0.1.7",
"description": "Sync Granola notes to your vault.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -p . -noEmit -skipLibCheck && node esbuild.config.mjs production",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [
"obsidian",
"plugin",
"granola"
],
"author": "Mathew Spolin",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"builtin-modules": "^3.3.0",
"esbuild": "0.20.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.1.2",
"tslib": "2.4.1",
"typescript": "5.2.2"
},
"dependencies": {
"@types/moment": "^2.11.29",
"moment": "^2.30.1",
"obsidian": "latest",
"obsidian-daily-notes-interface": "^0.9.4"
}
}