generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 998 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
31
32
33
34
35
36
{
"name": "obsidian-release-timeline",
"version": "1.3.0",
"description": "Release timeline rendered based on notes metadata with a dataview-like syntax.",
"main": "main.js",
"dependencies": {
"builtin-modules": "^3.3.0",
"compare-versions": "^4.1.3",
"domain": "^0.0.1",
"esbuild": "^0.16.17",
"esbuild-darwin-arm64": "^0.14.27",
"luxon": "^2.3.0",
"obsidian": "^1.2.8",
"tslib": "^2.5.2"
},
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "node esbuild.config.mjs production",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cakechaser/obsidian-release-timeline.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/cakechaser/obsidian-release-timeline/issues"
},
"homepage": "https://github.com/cakechaser/obsidian-release-timeline#readme",
"devDependencies": {
"jest": "^29.5.0",
"obsidian-dataview": "^0.5.56"
}
}