-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
115 lines (115 loc) · 2.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
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
{
"name": "cuppa",
"version": "1.2.0",
"publisher": "AlDuncanson",
"engines": {
"vscode": "^1.63.0"
},
"license": "SEE LICENSE IN LICENSE",
"displayName": "cuppa",
"description": "Oh look at that, it's time for a cuppa!",
"categories": [
"Other"
],
"keywords": [
"cuppa",
"reminders",
"notifications"
],
"galleryBanner": {
"color": "#000000",
"theme": "dark"
},
"preview": false,
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "cuppa.resetCuppa",
"category": "cuppa",
"title": "reset"
}
],
"configuration": {
"title": "cuppa",
"properties": {
"cuppa.reminderTime": {
"type": "number",
"default": 30,
"description": "How long before your reminder should be shown (in minutes)"
},
"cuppa.reminderMessage": {
"type": "string",
"default": "Time for a cuppa!",
"description": "The reminder message to display"
},
"cuppa.warningTime": {
"type": "number",
"default": 30,
"description": "How long before cuppa turns yellow to let you know your reminder time is coming up (in seconds)"
},
"cuppa.emoji": {
"type": "string",
"default": "🍵",
"description": "The emoji to display in the status bar"
}
}
}
},
"activationEvents": [
"*"
],
"badges": [
{
"url": "https://img.shields.io/github/sponsors/alDuncanson",
"href": "https://github.com/sponsors/alDuncanson",
"description": "Github Sponsors"
},
{
"url": "https://img.shields.io/github/stars/alDuncanson/cuppa",
"href": "https://github.com/alDuncanson",
"description": "Stars"
},
{
"url": "https://img.shields.io/visual-studio-marketplace/i/AlDuncanson.cuppa",
"href": "https://marketplace.visualstudio.com/items?itemName=AlDuncanson.cuppa",
"description": "Installs"
}
],
"qna": "https://github.com/alDuncanson/cuppa/discussions",
"extensionKind": [
"ui"
],
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"icon": "images/logo/cuppa_logo_small.png",
"repository": {
"type": "git",
"url": "https://github.com/alDuncanson/cuppa"
},
"devDependencies": {
"@types/vscode": "^1.63.0",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.0.0",
"@types/node": "14.x",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.6.0",
"glob": "^7.2.0",
"mocha": "^9.1.3",
"typescript": "^4.5.4",
"ts-loader": "^9.2.6",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1",
"@vscode/test-electron": "^2.0.3"
}
}