-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.21 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
{
"name": "obsidian-auto-periodic-notes",
"version": "0.2.3",
"description": "Creates new periodic notes automatically in the background and allows these to be pinned in your open tabs, requires the Periodic Notes plugin.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"test": "node --experimental-vm-modules ./node_modules/.bin/jest",
"coverage": "jest --coverage",
"test-ci": "jest --ci --reporters=default --reporters=jest-junit --coverage",
"version": "node version-bump.mjs"
},
"keywords": [],
"author": "Jamie Hurst <[email protected]>",
"license": "MIT",
"dependencies": {
"obsidian-daily-notes-interface": "^0.9.4"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"builtin-modules": "^4.0.0",
"esbuild": "^0.23.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"moment": "^2.30.1",
"obsidian": "^1.6.6",
"ts-jest": "^29.2.4",
"tslib": "^2.6.3",
"typescript": "^5.5.4"
}
}