-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
186 lines (186 loc) · 5.44 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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
{
"name": "kaleidofoam",
"displayName": "KaleidoFoam",
"publisher": "MikeCluck",
"repository": {
"type": "git",
"url": "https://github.com/MCluck90/kaleidofoam"
},
"description": "A collection of features for Foam",
"version": "1.4.0",
"license": "MIT",
"engines": {
"vscode": "^1.59.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:markdown",
"onCommand:kaleidofoam.openToday",
"onCommand:kaleidofoam.openLastWeek",
"onCommand:kaleidofoam.openThisWeek",
"onCommand:kaleidofoam.openNextWeek",
"onCommand:kaleidofoam.generateDailyEdgeLinks",
"onCommand:kaleidofoam.toggleWordWrapColumn",
"onCommand:kaleidofoam.checkTodo",
"onCommand:kaleidofoam.uncheckTodo"
],
"main": "./out/extension/extension.js",
"contributes": {
"configuration": {
"title": "KaleidoFoam",
"properties": {
"kaleidofoam.minutesBeforeNotifications": {
"type": "number",
"default": 0,
"description": "How many minutes before a scheduled notification should the notification fire?"
},
"kaleidofoam.notifications": {
"type": "string",
"default": "system",
"enum": [
"system",
"vscode",
"none"
],
"enumDescriptions": [
"Attempt to use system notifications (uses node-notifier)",
"Use VS Code notifications",
"Disable notifications"
]
},
"kaleidofoam.customSections": {
"description": "Custom sections to add to daily notes",
"type": "array",
"items": {
"type": "string"
},
"default": []
}
}
},
"commands": [
{
"command": "kaleidofoam.openToday",
"title": "KaleidoFoam: Open Today"
},
{
"command": "kaleidofoam.openTomorrow",
"title": "KaleidoFoam: Open Tomorrow"
},
{
"command": "kaleidofoam.openYesterday",
"title": "KaleidoFoam: Open Yesterday"
},
{
"command": "kaleidofoam.openLastWeek",
"title": "KaleidoFoam: Open Last Week"
},
{
"command": "kaleidofoam.openThisWeek",
"title": "KaleidoFoam: Open This Week"
},
{
"command": "kaleidofoam.openNextWeek",
"title": "KaleidoFoam: Open Next Week"
},
{
"command": "kaleidofoam.openWeekOfNote",
"title": "KaleidoFoam: Open Week of Note"
},
{
"command": "kaleidofoam.generateDailyEdgeLinks",
"title": "KaleidoFoam: Generate Daily Edge Links"
},
{
"command": "kaleidofoam.toggleWordWrapColumn",
"title": "KaleidoFoam: Toggle Word Wrap Column"
},
{
"command": "kaleidofoam.forwardTodo",
"title": "KaleidoFoam: Forward Todo"
},
{
"command": "kaleidofoam.unforwardTodo",
"title": "KaleidoFoam: Unforward Todo"
},
{
"command": "kaleidofoam.toggleTodo",
"title": "KaleidoFoam: Toggle Todo"
},
{
"command": "kaleidofoam.addToLog",
"title": "KaleidoFoam: Add to Log"
},
{
"command": "kaleidofoam.toggleTodoTag.focus",
"title": "KaleidoFoam: Toggle @focus"
},
{
"command": "kaleidofoam.toggleTodoTag.urgent",
"title": "KaleidoFoam: Toggle @urgent"
},
{
"command": "kaleidofoam.toggleTodoTag.optional",
"title": "KaleidoFoam: Toggle @optional"
}
]
},
"scripts": {
"prepare": "husky install",
"commit": "cz",
"release": "standard-version",
"clean": "rimraf out",
"build:code": "esbuild ./src/extension.ts --bundle --outfile=out/extension/extension.js --external:vscode --format=cjs --platform=node --sourcemap",
"build:templates": "rimraf out/extension/templates && copyfiles -f src/templates/* out/extension/templates",
"build:tests": "tsc --outDir out/tests",
"build": "yarn build:code && yarn build:templates",
"typecheck": "tsc --noEmit",
"rebuild": "yarn typecheck && yarn clean && yarn build",
"watch": "yarn rebuild && tsc -watch -p ./",
"lint": "eslint src --ext ts && prettier -c \"src/**/*.ts\"",
"pretest": "yarn build:tests && yarn lint",
"test": "node ./out/tests/test/runTest.js",
"vscode:prepublish": "yarn rebuild",
"vscode:package": "vsce package",
"vscode:publish": "vsce publish",
"postchangelog": "git cliff --output CHANGELOG.md"
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@types/glob": "^7.1.4",
"@types/mocha": "^9.0.0",
"@types/node": "^16.6.2",
"@types/node-notifier": "^8.0.1",
"@types/vscode": "^1.59.0",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"commitizen": "^4.2.4",
"copyfiles": "^2.4.1",
"cz-conventional-changelog": "3.3.0",
"esbuild": "^0.14.23",
"eslint": "^7.32.0",
"glob": "^7.1.7",
"husky": "^7.0.4",
"mocha": "^9.1.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"standard-version": "^9.3.2",
"typescript": "^4.3.5",
"vsce": "^1.96.1",
"vscode-dts": "^0.3.1",
"vscode-test": "^1.6.1"
},
"dependencies": {
"fp-ts": "^2.11.1",
"node-notifier": "^10.0.0",
"parsnip-ts": "^1.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}