-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
114 lines (114 loc) · 2.89 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
{
"name": "vs-code-wiki",
"displayName": "VS Code Wiki",
"description": "Wiki for VS Code",
"version": "0.5.3",
"repository": {
"type": "git",
"url": "https://github.com/hannut91/vs-code-wiki.git"
},
"publisher": "Yunseok",
"engines": {
"vscode": "^1.38.0"
},
"categories": [
"Other"
],
"icon": "images/icon.png",
"activationEvents": [
"onCommand:wiki.openWiki",
"onCommand:wiki.goToWiki",
"onCommand:wiki.searchWiki",
"onCommand:wiki.exportWiki",
"onCommand:wiki.deleteWiki"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "VS Code Wiki",
"properties": {
"wiki.basePath": {
"type": "string",
"default": "",
"description": "Path to save wiki files. The default path is $HOME/vscode_wiki"
},
"wiki.baseRootFile": {
"type": "string",
"default": "",
"description": "The file where the navigation into the wiki starts (basically the wiki entry file)."
},
"wiki.openBasePathAsWorkspace": {
"type": "boolean",
"default": false,
"description": "Open the entire folder containing the base file as a workspace."
},
"wiki.targetRootFile": {
"type": "string",
"default": "",
"description": "File path to copy wiki index file when exporting"
},
"wiki.targetPath": {
"type": "string",
"default": "",
"description": "Directory path to copy wiki files when exporting"
}
}
},
"commands": [
{
"command": "wiki.openWiki",
"title": "Open Wiki"
},
{
"command": "wiki.goToWiki",
"title": "Go to Wiki"
},
{
"command": "wiki.searchWiki",
"title": "Search Wiki"
},
{
"command": "wiki.exportWiki",
"title": "Export Wiki"
},
{
"command": "wiki.deleteWiki",
"title": "Delete Wiki"
}
],
"keybindings": [
{
"key": "ctrl+]",
"command": "wiki.goToWiki"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"lint": "eslint 'src/**/*.ts'",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/lodash": "^4.14.144",
"@types/moment": "^2.13.0",
"@types/node": "^10.12.21",
"@types/vscode": "^1.38.0",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"jest": "^25.5.4",
"ts-jest": "^25.4.0",
"typescript": "^3.3.1"
},
"dependencies": {
"lodash": "^4.17.19",
"moment": "^2.24.0"
}
}