-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.7 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.7 KB
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
{
"name": "yaclock",
"version": "1.0.3",
"displayName": "Clock",
"description": "Yet Another Clock for Visual Studio Code in the status bar",
"main": "out/extension.js",
"scripts": {
"build": "npx tsc -p .",
"vscode:prepublish": "npm run build"
},
"extensionKind": [
"ui"
],
"engines": {
"vscode": "^1.32.0"
},
"activationEvents": [
"onStartupFinished"
],
"publisher": "jameslan",
"icon": "images/icon.png",
"contributes": {
"configuration": {
"title": "Yet Another Clock",
"properties": {
"yaclock.prefix": {
"description": "String shown in front of the time.",
"type": "string",
"default": "⏰"
},
"yaclock.postfix": {
"description": "String shown after the time.",
"type": "string",
"default": ""
},
"yaclock.showSecond": {
"description": "Display the time with seconds.",
"type": "boolean",
"default": false
},
"yaclock.flashTimeSeparator": {
"description": "Flash the time separators",
"type": "boolean",
"default": false
},
"yaclock.hour12": {
"description": "Use a 12-hour clock",
"type": "boolean",
"default": false
},
"yaclock.padHour24": {
"description": "Zero-pad one-digit hours in 24 hrs mode.",
"type": "boolean",
"default": false
},
"yaclock.showDay": {
"description": "Show the day of the week.",
"type": "boolean",
"default": false
},
"yaclock.showDate": {
"description": "Show date.",
"type": "boolean",
"default": false
},
"yaclock.showAmPm": {
"description": "Show AM/PM. Will be ignored if in 24 hrs mode.",
"type": "boolean",
"default": false
},
"yaclock.position": {
"description": "Position in the status bar.",
"type": "string",
"enum": [
"left",
"right"
],
"default": "right"
},
"yaclock.priority": {
"description": "Priority. The bigger value, the clock will be closer to the left edge. ",
"type": "number",
"default": 10
}
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/jameslan/vscode-yaclock.git"
},
"bugs": "https://github.com/jameslan/vscode-yaclock/issues",
"homepage": "https://github.com/jameslan/vscode-yaclock",
"author": "James Lan <jameslan@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/vscode": "^1.32.0",
"typescript": "^4.1.3"
}
}