-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
126 lines (126 loc) · 3.49 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
{
"name": "rt-thread-smart",
"publisher": "rt-thread",
"displayName": "RT-Thread Smart Extension",
"description": "Smart Helper Extension for RT-Thread Development",
"version": "0.4.10",
"repository": {
"url": "https://github.com/RT-Thread/vscode-rt-smart"
},
"engines": {
"vscode": "^1.93.0"
},
"categories": [
"Other"
],
"activationEvents": [
"workspaceContains:rtconfig.h",
"onView:rt-thread"
],
"main": "./out/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "rt-thread",
"title": "RT-Thread",
"icon": "resources/images/rt-thread.png"
}
]
},
"views": {
"rt-thread": [
{
"type": "tree",
"id": "projectFilesId",
"name": "Project Files"
},
{
"type": "tree",
"id": "treeId",
"name": "Commands"
}
]
},
"commands": [
{
"command": "extension.showHome",
"title": "Show RT-Thread Home"
},
{
"command": "extension.buildProject",
"title": "Build RT-Thread"
},
{
"command": "extension.executeCommand",
"title": "Execute Cmd under RT-Thread Terminal"
},
{
"command": "extension.clickProject",
"title": "Open Project File"
},
{
"command": "extension.refreshRTThread",
"title": "Refresh",
"icon": "$(sync)"
}
],
"menus": {
"view/title": [
{
"command": "extension.refreshRTThread",
"when": "view == projectFilesId",
"group": "navigation"
}
]
},
"configuration": {
"type": "object",
"title": "Custom Commands(menu)",
"properties": {
"smart.menuCommands": {
"type": "array",
"items": {
"type": "string"
},
"default": []
}
}
},
"keybindings": [
{
"command": "extension.buildProject",
"key": "ctrl+shift+b"
},
{
"command": "extension.openMenu",
"key": "ctrl+shift+m"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src",
"test": "vscode-test"
},
"dependencies": {
"marked": "^14.1.3"
},
"extensionDependencies": [
"ms-python.python"
],
"devDependencies": {
"@types/vscode": "^1.93.0",
"@types/mocha": "^10.0.7",
"@types/node": "20.x",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"eslint": "^9.9.1",
"typescript": "^5.5.4",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1"
}
}