-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.17 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
{
"name": "gitee-code-settings-sync",
"displayName": "code settings sync",
"description": "code settings upload to gitee",
"version": "0.1.21",
"publisher": "Alex-Chen",
"icon": "images/logo.png",
"author": {
"name": "Alex"
},
"engines": {
"vscode": "^1.43.0"
},
"repository": {
"type": "git",
"url": "https://github.com/MakeWorkSimple/sync_gitee.git"
},
"bugs": {
"url": "https://github.com/MakeWorkSimple/sync_gitee/issues",
"email": "bufubaoni@163.com"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"keywords": [
"gitee-code-settings-sync",
"vscode-settings-sync",
"code-settings-sync",
"settings-sync",
"gitee-sync",
"gitee-oschina",
"码云",
"同步",
"配置"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.giteeUploadSetting",
"title": "%cmd.upload.settings.title%"
},
{
"command": "extension.giteeDownloadSetting",
"title": "%cmd.download.settings.title%"
}
],
"configuration": {
"title": "set gitee gist",
"properties": {
"gitee.gist": {
"type": "string",
"default": "",
"description": "%ext.config.gist%"
},
"gitee.access_token": {
"type": "string",
"default": "",
"description": "%ext.config.access_token%"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js",
"build": "vsce package",
"clean": "rm *.vsix",
"install": "npm install",
"install-env": "npm install vsce",
"upgrade-env": "npm install -g vsce"
},
"devDependencies": {
"@types/adm-zip": "^0.4.32",
"@types/express": "^4.17.4",
"@types/fs-extra": "^8.1.0",
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.6",
"@types/node": "^10.17.18",
"@types/node-fetch": "^2.5.5",
"@types/vscode": "^1.43.0",
"glob": "^7.1.6",
"mocha": "^7.1.1",
"tslint": "^5.20.1",
"typescript": "^3.8.3",
"vscode-test": "^1.3.0"
},
"dependencies": {
"adm-zip": "^0.4.14",
"express": "^4.16.4",
"fs-extra": "^8.0.1",
"node-fetch": "^2.6.1",
"vsce": "^2.5.0",
"vscode-nls": "^3.2.5"
}
}