-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 2.93 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
{
"name": "statusbar-quotes",
"displayName": "StatusBar Quotes",
"description": "Here are some cool quotes that will warm your poor mind tired of programming.",
"icon": "assets/speech-balloon-ms.png",
"version": "23.5.21",
"publisher": "kim-sardine",
"engines": {
"vscode": "^1.73.0"
},
"categories": [
"Other"
],
"keywords": [
"status bar quote",
"status bar",
"life quotes",
"good quotes",
"quotes"
],
"repository": {
"type": "git",
"url": "https://github.com/kim-sardine/statusbar-quotes"
},
"bugs": {
"url": "https://github.com/kim-sardine/statusbar-quotes/issues",
"email": "kim-sardine@gmail.com"
},
"license": "SEE LICENSE IN LICENSE.md",
"galleryBanner": {
"color": "#C80000",
"theme": "dark"
},
"main": "./out/extension.js",
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"configuration": {
"title": "StatusBar Quotes",
"properties": {
"statusbar-quotes.category": {
"type": "string",
"default": "All",
"enum": [
"All",
"Wise Saying",
"Programming",
"Startup",
"How to Win Friends and Influence People (Dale Carnegie)"
],
"enumDescriptions": [
"",
"Mindfulness",
"May the Force be with you..",
"Inspirational quotes for startups",
"Great opportunity to improve yourself social relations"
]
},
"statusbar-quotes.language": {
"type": "string",
"default": "English",
"enum": [
"English",
"Korean"
]
},
"statusbar-quotes.display-seconds": {
"type": "integer",
"minimum": 0,
"maximum": 86400,
"default": 15,
"markdownDescription": "How many seconds do you want the quote to be changed?\n\n range : 0 *(do not change quote)* ~ 86400 *(1 hour)*"
},
"statusbar-quotes.display-shuffle-button": {
"type": "boolean",
"default": true,
"markdownDescription": "Display shuffle button to the left of the quote."
}
}
},
"commands": [
{
"command": "statusbar-quotes.change-language",
"title": "Change language",
"category": "StatusBar Quote"
},
{
"command": "statusbar-quotes.change-category",
"title": "Change category",
"category": "StatusBar Quote"
},
{
"command": "statusbar-quotes.change-display-seconds",
"title": "Change display seconds",
"category": "StatusBar Quote"
}
]
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "20.2.1",
"@types/vscode": "^1.73.0",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"@vscode/test-electron": "^2.3.2",
"eslint": "^8.41.0",
"glob": "^8.1.0",
"mocha": "^10.2.0",
"typescript": "^5.0.4"
}
}