-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.23 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 3.23 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
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
{
"name": "embedd-project-manager",
"displayName": "Embedd Project Manager",
"icon": "images/icon.png",
"description": "Extension for managing embedded projects",
"version": "0.0.7",
"publisher": "embedd-team",
"repository": {
"type": "git",
"url": "https://github.com/embeddteam/EmbeddedProjectManager.git"
},
"engines": {
"vscode": "^1.105.0"
},
"categories": [
"Other"
],
"extensionDependencies": [
"embedd-team.embedd-cortex-debug",
"embedd-team.embedd-build-analyzer"
],
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "embedd-project-manager.init_project",
"title": "Embedd Project Manager: Init project"
},
{
"command": "embedd-project-manager.check_updates",
"title": "Embedd Project Manager: Check for updates",
"icon": "$(cloud-download)"
}
],
"menus": {
"view/title": [
{
"command": "embedd-project-manager.check_updates",
"when": "view == epmTreeView",
"group": "navigation"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "epmSidebar",
"title": "Embedd Project Manager",
"icon": "$(chip)"
}
]
},
"views": {
"epmSidebar": [
{
"id": "epmTreeView",
"name": "Project Actions",
"type": "tree",
"icon": "$(chip)"
}
]
},
"configuration": {
"title": "Embedd Project Manager",
"properties": {
"EPMVSCodeExtension.CLT.path": {
"type": "string",
"default": "",
"description": "Path to the command line tools",
"scope": "window"
},
"EPMVSCodeExtension.findIocFiles": {
"type": "boolean",
"default": true,
"description": "Search for .ioc files in project folders",
"scope": "window"
},
"EPMVSCodeExtension.GenerateOpenOCD": {
"type": "boolean",
"default": false,
"description": "Use OpenOCD for project debugging",
"scope": "window"
},
"EPMVSCodeExtension.autoCheckUpdates": {
"type": "boolean",
"default": true,
"description": "Automatically check for extension updates on startup",
"scope": "application"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src",
"test": "vscode-test",
"vsix_package": "vsce package",
"deploy": "vsce publish"
},
"devDependencies": {
"@types/vscode": "^1.105.0",
"@types/mocha": "^10.0.10",
"@types/node": "22.x",
"typescript-eslint": "^8.46.3",
"eslint": "^9.39.1",
"typescript": "^5.9.3",
"ts-loader": "^9.5.4",
"webpack": "^5.102.1",
"webpack-cli": "^6.0.1",
"@vscode/test-cli": "^0.0.12",
"@vscode/test-electron": "^2.5.2"
}
}