Vincent Batts
54635910dc
This is to replace https://git.thisco.de/mirrors/random-utils/src/master/cmd/next-note for note taking helpers
43 lines
No EOL
1 KiB
JSON
43 lines
No EOL
1 KiB
JSON
{
|
|
"name": "next-note",
|
|
"displayName": "next-note",
|
|
"description": "Helpers for daily notes",
|
|
"version": "0.0.1",
|
|
"publisher": "vbatts",
|
|
"engines": {
|
|
"vscode": "^1.5.0"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"activationEvents": [
|
|
"onCommand:extension.sayHello",
|
|
"onCommand:extension.nextNoteInsertDate"
|
|
|
|
],
|
|
"main": "./extension",
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "extension.sayHello",
|
|
"title": "Hello World"
|
|
},
|
|
{
|
|
"command": "extension.nextNoteInsertDate",
|
|
"title": "NextDate"
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"postinstall": "node ./node_modules/vscode/bin/install",
|
|
"test": "node ./node_modules/vscode/bin/test"
|
|
},
|
|
"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"
|
|
}
|
|
} |