-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
138 lines (138 loc) · 3.4 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "angcyo",
"displayName": "angcyo",
"description": "还能这么玩, `骚年`我在群里等你! 一个能把Idea写崩溃的蓝神.",
"version": "2.0.1",
"license": "MIT",
"publisher": "angcyo",
"repository": {
"type": "git",
"url": "https://github.com/angcyo/VSCode-angcyo"
},
"engines": {
"vscode": "^1.40.0"
},
"icon": "res/angcyo.png",
"categories": [
"Other"
],
"activationEvents": [
"onView:welcomeViews",
"onView:angcyoViews",
"onView:httpViews",
"onView:laserPeckerViews"
],
"main": "./extension.js",
"browser": "./extension.js",
"contributes": {
"commands": [
{
"command": "angcyo.refresh",
"title": "Refresh Angcyo",
"icon": "res/refresh.svg",
"category": "angcyo"
},
{
"command": "angcyo.command.addQuotationMarkLaserPecker",
"title": "LaserPecker 添加双引号",
"category": "angcyo"
}
],
"menus": {
"view/title": [
{
"command": "angcyo.refresh",
"when": "view == welcomeViews || view == angcyoViews || view == httpViews || view == laserPeckerViews",
"group": "navigation"
}
]
},
"viewsWelcome": [
{
"view": "welcomeViews",
"contents": "欢迎使用! by angcyo.\n[Csdn](https://blog.csdn.net/angcyo)\n[Github](https://github.com/angcyo)\n[掘金](https://juejin.cn/user/1398234517866856)\n[QQ咨询](http://wpa.qq.com/msgrd?v=3&uin=664738095&site=qq&menu=yes)",
"when": "angcyo.showWelcome"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "angcyo-bar",
"title": "Angcyo Views",
"icon": "res/angcyo.svg"
}
]
},
"views": {
"angcyo-bar": [
{
"id": "welcomeViews",
"name": "welcome"
},
{
"id": "angcyoViews",
"name": "angcyo"
},
{
"id": "httpViews",
"name": "Http"
},
{
"id": "laserPeckerViews",
"name": "LaserPecker"
}
]
},
"configuration": {
"type": "object",
"title": "angcyo configuration",
"properties": {
"angcyo-config.host": {
"type": "string",
"description": "服务器地址",
"default": ""
},
"angcyo-memo.memo": {
"type": "string",
"description": "备忘录",
"default": ""
},
"angcyo-httpServer.uploadFolderWin": {
"type": "string",
"description": "上传文件保存路径Windowns",
"default": ""
},
"angcyo-httpServer.uploadFolderMac": {
"type": "string",
"description": "上传文件保存路径Mac",
"default": ""
}
}
}
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.1",
"@types/node": "16.x",
"@types/vscode": "^1.40.0",
"@vscode/test-electron": "^2.1.5",
"eslint": "^8.20.0",
"glob": "^8.0.3",
"mocha": "^10.0.0",
"typescript": "^4.7.4",
"vscode": "^1.1.37"
},
"dependencies": {
"figlet": "^1.8.0",
"formidable": "^2.1.1",
"isomorphic-fetch": "^3.0.0",
"qrcode": "^1.5.4",
"qrcode-reader": "^1.0.4",
"jimp": "^1.6.0"
}
}