-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
103 lines (103 loc) · 2.66 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
{
"name": "notable",
"displayName": "Notable",
"description": "Create, edit and search Markdown notes from Notable.",
"icon": "images/logo.png",
"version": "0.3.2",
"engines": {
"vscode": "^1.46.0"
},
"publisher": "madeindjs",
"repository": {
"type": "Github",
"url": "https://github.com/madeindjs/vscode-notable"
},
"categories": [
"Notebooks"
],
"activationEvents": [
"onLanguage:markdown"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "notable.createNote",
"title": "Notable: Create a note"
},
{
"command": "notable.searchNote",
"title": "Notable: Search a new note"
},
{
"when": "resourceLangId == md",
"command": "notable.addTagNote",
"title": "Notable: Edit tags"
},
{
"when": "resourceLangId == md",
"command": "notable.addFrontmatter",
"title": "Notable: Add Frontmatter"
},
{
"when": "resourceLangId == md",
"command": "notable.safeDeleteNote",
"title": "Notable: Safe delete a new note"
}
],
"configuration": {
"title": "Notable",
"properties": {
"notable.onSaveDenyListFile": {
"type": "array",
"default": [
"README.md"
],
"description": "Disable on save behavior for given files."
},
"notable.onSaveRenameFile": {
"type": "boolean",
"default": true,
"description": "Rename file on save to filename match markdown title."
},
"notable.onSaveUpdateFrontMatter": {
"type": "boolean",
"default": true,
"description": "Update YAML front matter on file saving (ex: `modified`, `title`)."
}
}
},
"menus": {
"explorer/context": []
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/didyoumean": "^1.2.0",
"@types/glob": "^7.1.1",
"@types/mocha": "^7.0.2",
"@types/node": "^13.11.0",
"@types/vscode": "^1.46.0",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.8.0",
"glob": "^7.1.6",
"mocha": "^9.2.0",
"typescript": "^4.3.5",
"vscode-test": "^1.3.0"
},
"dependencies": {
"@textlint/markdown-to-ast": "^12.1.0",
"gray-matter": "^4.0.2",
"sanitize-filename": "^1.6.3",
"yaml": "^1.10.0"
},
"license": "MIT"
}