generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 1.85 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "obsidian-cron-plugin",
"version": "1.1.2",
"description": "Simple CRON / Schedular plugin to regularly run user scripts or Obsidian commands for Obsidian (https://obsidian.md)",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"lint": "eslint ./src/*",
"semantic-release": "semantic-release"
},
"keywords": [],
"author": "Callum Loh",
"license": "MIT",
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@types/node": "^16.11.6",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.17.3",
"obsidian": "latest",
"semantic-release": "^20.1.3",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"repository": {
"type": "git",
"url": "https://github.com/cdloh/obsidian-cron.git"
},
"dependencies": {
"@popperjs/core": "^2.11.6",
"cron-parser": "^4.8.1",
"eslint": "^8.36.0",
"uuid": "^9.0.0"
},
"release": {
"tagFormat": "${version}",
"plugins": [
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json",
"package-lock.json",
"manifest.json",
"versions.json"
],
"message": "release(version): Release ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
[
"@semantic-release/github",
{
"assets": [
{
"path": "main.js",
"label": "main.js"
},
{
"path": "manifest.json",
"label": "manifest.json"
},
{
"path": "styles.css",
"label": "styles.css"
}
]
}
]
]
}
}