-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 997 Bytes
/
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
{
"name": "gitmd",
"version": "1.2.9",
"displayName": "gitmd",
"description": "一个同步 md 文件夹到 git 的小玩意",
"engines": {
"vscode": "^1.79.0"
},
"publisher": "charlzyx",
"author": {
"name": "charlzyx",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/charlzyx/gitmd.git"
},
"bin": {
"gitmd": "bin.js"
},
"scripts": {
"lint": "npx prettier --write ./*.js"
},
"categories": [
"Other"
],
"activationEvents": [
"workspaceContains:gitmd.js"
],
"main": "./extension.js",
"contributes": {
"commands": []
},
"devDependencies": {
"@types/node": "^20.3.1",
"@types/vscode": "^1.79.0",
"vsce": "^2.15.0"
},
"license": "MIT",
"dependencies": {
"chokidar": "^3.5.3",
"dayjs": "^1.11.8",
"directory-tree": "^3.5.1",
"git-rev-sync": "^3.0.2",
"portfinder": "^1.0.32",
"rimraf": "^5.0.1",
"vitepress": "^1.0.0-beta.3"
}
}