-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.45 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
{
"name": "ikunyyds",
"displayName": "坤坤の关怀",
"description": "写代码不再孤单,坤坤与你同在",
"version": "0.1.4",
"publisher": "cy-6359",
"icon": "images/logo.jpg",
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Other"
],
"keywords": [
"蔡徐坤",
"🐔你太美",
"鼓励",
"ikun"
],
"bugs": {
"url": "https://github.com/cy-6359/kunkun_vscode_extend/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/cy-6359/kunkun_vscode_extend/blob/main/tips.md",
"repository": {
"type": "git",
"url": "https://github.com/cy-6359/kunkun_vscode_extend.git"
},
"activationEvents": [
"onCommand:cxk.showReminderView",
"*"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "cxk.showReminderView",
"title": "打开提醒页面",
"category": "cxk"
}
],
"configuration": {
"type": "object",
"title": "鸡你太美",
"properties": {
"cxk.reminderViewIntervalInMinutes": {
"type": "number",
"default": 60,
"description": "展示提醒页面的时间间隔(分钟)"
},
"cxk.title": {
"type": "string",
"default": "dd,小哥哥,代码写久了,坤坤提醒您该休息啦~",
"description": "页面内展示文字"
},
"cxk.isDiy": {
"type": "string",
"default": "default",
"description": "类型:default:默认图;url:自定义网络图"
},
"cxk.customImages": {
"type": "array",
"default": [
"https://static.cy-monster.cn/vscode_extends/v2-5107f0a77c068936a01718c2555df046_hd.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": {
"@types/vscode": "^1.30.0",
"@types/glob": "^8.0.0",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"glob": "^8.0.3",
"mocha": "^10.1.0",
"typescript": "^4.9.3",
"@vscode/test-electron": "^2.2.0"
}
}