-
Notifications
You must be signed in to change notification settings - Fork 78
/
package.json
84 lines (84 loc) · 2.6 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
{
"name": "ycy",
"displayName": "超越鼓励师",
"description": "写代码不再孤单,有杨超越与你同在",
"version": "0.1.2",
"publisher": "formulahendry",
"icon": "logo.jpg",
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Other"
],
"keywords": [
"杨超越",
"提醒",
"鼓励"
],
"bugs": {
"url": "https://github.com/formulahendry/vscode-ycy/issues",
"email": "formulahendry@gmail.com"
},
"homepage": "https://github.com/formulahendry/vscode-ycy/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/formulahendry/vscode-ycy.git"
},
"activationEvents": [
"onCommand:ycy.showReminderView",
"*"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "ycy.showReminderView",
"title": "打开提醒页面",
"category": "ycy"
}
],
"configuration": {
"type": "object",
"title": "杨超越",
"properties": {
"ycy.reminderViewIntervalInMinutes": {
"type": "number",
"default": 60,
"description": "展示提醒页面的时间间隔(分钟)"
},
"ycy.title": {
"type": "string",
"default": "小哥哥,小哥哥,代码写久了,该休息啦~",
"description": "页面内展示文字"
},
"ycy.type": {
"type": "string",
"default": "default",
"description": "类型:default:默认图;url:网络图"
},
"ycy.customImages": {
"type": "array",
"default": [
"http://b-ssl.duitang.com/uploads/item/201806/04/20180604090459_gqqjo.jpg"
],
"description": "用户设置图片地址"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "^1.1.21",
"tslint": "^5.8.0",
"@types/node": "^8.10.25",
"@types/mocha": "^2.2.42"
}
}