49 lines
No EOL
1.3 KiB
JSON
49 lines
No EOL
1.3 KiB
JSON
{
|
|
"name": "next-note",
|
|
"displayName": "next-note",
|
|
"description": "Helpers for daily notes",
|
|
"version": "0.0.1",
|
|
"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.nextNoteOpenCurrentWeek"
|
|
],
|
|
"main": "./extension",
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "extension.nextNoteOpenCurrentWeek",
|
|
"title": "NextNote: Open Current 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",
|
|
"vscode": "^1.0.0",
|
|
"mocha": "^2.3.3",
|
|
"eslint": "^3.6.0",
|
|
"@types/node": "^6.0.40",
|
|
"@types/mocha": "^2.2.32"
|
|
}
|
|
} |