forked from MCluck90/kaleidofoam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
155 lines (155 loc) · 4.54 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
{
"name": "kaleidofoam",
"displayName": "KaleidoFoam",
"publisher": "MikeCluck",
"repository": {
"type": "git",
"url": "https://github.com/MCluck90/kaleidofoam"
},
"description": "A collection of features for Foam",
"version": "1.1.3",
"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.js",
"contributes": {
"configuration": {
"title": "KaleidoFoam",
"properties": {
"kaleidofoam.minutesBeforeNotifications": {
"type": "number",
"default": 0,
"description": "How many minutes before a scheduled notification should the notification fire?"
}
}
},
"commands": [
{
"command": "kaleidofoam.openToday",
"title": "KaleidoFoam: Open Today"
},
{
"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.js --external:vscode --format=cjs --platform=node --sourcemap",
"build:templates": "rimraf out/templates && copyfiles -f src/templates/* out/templates",
"build": "yarn build:code && yarn build:templates",
"rebuild": "yarn clean && yarn build",
"watch": "yarn rebuild && tsc -watch -p ./",
"lint": "eslint src --ext ts && prettier -c \"src/**/*.ts\"",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js",
"test:unit": "npm run pretest && node ./out/test/unit/index.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"
}
}
}