This repository was archived by the owner on Jul 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.17 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.17 KB
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
{
"name": "jay-vscode",
"displayName": "哎哟,不错哦",
"description": "想要一步一步往上爬/在最高点乘着叶片往前飞/小小的天流过的泪和汗/总有一天我有属于我的天",
"version": "0.0.3",
"publisher": "cnyballk",
"icon": "public/jay-1.png",
"engines": {
"vscode": "^1.30.0"
},
"author": "cnyballk <584518260@qq.com> (https://github.com/cnyballk)",
"categories": [
"Other"
],
"keywords": [
"周杰伦",
"jay",
"奶茶",
"休息"
],
"bugs": {
"url": "https://github.com/cnyballk/jay-vscode/issues"
},
"homepage": "https://github.com/cnyballk/jay-vscode/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/cnyballk/jay-vscode.git"
},
"activationEvents": [
"onCommand:extension.callJay",
"*"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "extension.callJay",
"title": "callJay!!!",
"category": "jay"
}
],
"menus": {
"editor/context": [
{
"command": "extension.callJay",
"group": "navigation"
}
]
},
"configuration": {
"type": "object",
"title": "周杰伦",
"properties": {
"jay.timer": {
"type": "number",
"default": 120,
"description": "让杰伦提醒的间隔时间"
},
"jay.text": {
"type": "string",
"default": "哎哟,不错哦,这代码,不过记得先休息一下,喝杯奶茶吧~",
"description": "让杰伦提醒的文字"
},
"jay.picture": {
"type": "string",
"default": "jay-2",
"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"
}
}