-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
161 lines (161 loc) · 3.56 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
{
"name": "cron-tasks",
"displayName": "Cron Tasks",
"description": "Easily schedule your tasks",
"version": "0.2.0",
"author": {
"name": "Baptiste Augrain",
"email": "[email protected]"
},
"publisher": "zokugun",
"license": "MIT",
"homepage": "https://github.com/zokugun/vscode-cron",
"repository": {
"type": "git",
"url": "https://github.com/zokugun/vscode-cron.git"
},
"bugs": {
"url": "https://github.com/zokugun/vscode-cron/issues"
},
"engines": {
"vscode": "^1.23.0"
},
"main": "./lib/index.js",
"browser": "./lib/index.js",
"scripts": {
"bundle": "ncc build out/extension --out lib",
"commit": "cz",
"compile": "tsc -p src",
"lint": "xo",
"package": "rm -f *.vsix && vsce package",
"prepare": "husky install; fixpack || true",
"release": "release-it",
"vscode:prepublish": "npm run compile && npm run bundle",
"watch": "tsc-watch -p src --onSuccess 'npm run bundle'"
},
"dependencies": {
"croner": "^5.3.4",
"fs-extra": "^10.0.1",
"uuid-random": "^1.3.2"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/fs-extra": "^9.0.13",
"@types/node": "^16.11.45",
"@types/vscode": "^1.23.0",
"@vercel/ncc": "^0.34.0",
"commitizen": "^4.2.5",
"fixpack": "^4.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"release-it": "^15.3.0",
"tsc-watch": "^5.0.3",
"typescript": "^4.2.4",
"xo": "^0.48.0"
},
"activationEvents": [
"onStartupFinished"
],
"capabilities": {
"virtualWorkspaces": true,
"untrustedWorkspaces": {
"supported": true
}
},
"contributes": {
"commands": [],
"configuration": {
"title": "Cron Tasks",
"properties": {
"cronTasks.debug": {
"description": "Output debug logs",
"default": false,
"oneOf": [
{
"type": "boolean",
"default": false
},
{
"type": "string",
"default": "useBlank",
"enum": [
"off",
"on",
"useBlank"
],
"enumDescriptions": [
"The logs are still print out",
"Focus on the channel",
"The commands won't be called"
]
}
],
"scope": "application"
},
"cronTasks.notification": {
"type": "string",
"description": "Display notification when a new version is installed",
"default": "minor",
"enum": [
"none",
"major",
"minor",
"patch"
],
"enumDescriptions": [
"The new version notification won't be shown anymore",
"The new version notification will be shown only with a new major version",
"The new version notification will be shown only with a new minor version",
"The new version notification will always be shown"
],
"scope": "application"
},
"cronTasks.tasks": {
"type": "array",
"description": "List of tasks to schedule",
"items": {
"type": "object",
"description": "A task",
"properties": {
"at": {
"type": "string",
"description": "The date/time of the cron"
},
"run": {
"type": "string",
"description": "The command to execute"
},
"args": {
"type": "array",
"description": "The arguments to pass to the command - optional",
"items": {
"type": "string"
}
}
}
}
}
}
}
},
"icon": "icon.png",
"galleryBanner": {
"color": "#F6E9AD",
"theme": "light"
},
"categories": [
"Other"
],
"keywords": [
"cron",
"crontab",
"job",
"schedule",
"task"
],
"extensionKind": [
"ui",
"workspace"
]
}