vscode-next-note/package.json

65 lines
1.9 KiB
JSON

{
"name": "next-note",
"displayName": "next-note",
"description": "Helpers for daily notes",
"version": "0.0.2",
"publisher": "vbatts",
"repository": {
"type": "git",
"url": "https://git.thisco.de/vbatts/vscode-next-note"
},
"engines": {
"vscode": "^1.5.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.nextNoteInsertDate",
"onCommand:extension.nextNoteFindTodos",
"onCommand:extension.nextNoteOpenCurrentWeek",
"onCommand:extension.nextNoteOpenPreviousWeek",
"onCommand:extension.nextNoteOpenNextWeek"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "extension.nextNoteFindTodos",
"title": "NextNote: Find TODOs in notes"
},
{
"command": "extension.nextNoteOpenPreviousWeek",
"title": "NextNote: Open Previous Week"
},
{
"command": "extension.nextNoteOpenCurrentWeek",
"title": "NextNote: Open Current Week"
},
{
"command": "extension.nextNoteOpenNextWeek",
"title": "NextNote: Open Next Week"
},
{
"command": "extension.nextNoteInsertDate",
"title": "NextNote: Date"
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"dependencies": {
"dateformat": "^2.0.0"
},
"devDependencies": {
"typescript": "^2.0.3",
"dateformat": "^2.0.0",
"vscode": "^1.0.0",
"mocha": "^2.3.3",
"eslint": "^3.6.0",
"@types/node": "^6.0.40",
"@types/mocha": "^2.2.32"
}
}