-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.52 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
{
"name": "quotations-mao",
"displayName": "Quotations-Mao",
"description": "Quotations from Mao",
"version": "1.1.1",
"publisher": "xiaofeihe",
"icon": "logo.png",
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Other"
],
"keywords": [
"mao"
],
"bugs": {
"url": "https://github.com/XiaoFeiHe1993/vscode-mao/issues",
"email": "1712776213@qq.com"
},
"homepage": "https://github.com/XiaoFeiHe1993/vscode-mao",
"repository": {
"type": "git",
"url": "https://github.com/XiaoFeiHe1993/vscode-mao.git"
},
"activationEvents": [
"onCommand:mao.showReminderView",
"*"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "mao.showReminderView",
"title": "打开语录",
"category": "report"
}
],
"configuration": {
"type": "object",
"title": "语录",
"properties": {
"report.title": {
"type": "string",
"default": "好好学习,天天向上",
"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": "4.2.4",
"vscode": "1.1.37",
"tslint": "5.20.1",
"@types/node": "13.13.51",
"@types/mocha": "8.2.2"
},
"__npminstall_done": false
}