-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
157 lines (157 loc) · 4.37 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"name": "zephyr-tools",
"displayName": "Circuit Dojo Zephyr SDK Tools",
"description": "Used for building your Zephyr projects.",
"version": "0.3.2",
"license": "Apache-2.0",
"publisher": "circuitdojo",
"icon": "img/bulb.png",
"engines": {
"vscode": "^1.52.0",
"node": ">=16"
},
"repository": {
"type": "git",
"url": "https://github.com/circuitdojo/zephyr-tools.git"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished",
"onCommand:zephyr-tools.setup",
"onCommand:zephyr-tools.create-project",
"onCommand:zephyr-tools.build",
"onCommand:zephyr-tools.build-pristine",
"onCommand:zephyr-tools.change-board",
"onCommand:zephyr-tools.change-project",
"onCommand:zephyr-tools.flash",
"onCommand:zephyr-tools.flash-and-monitor",
"onCommand:zephyr-tools.setup-newtmgr",
"onCommand:zephyr-tools.monitor",
"onCommand:zephyr-tools.setup-monitor",
"onCommand:zephyr-tools.load",
"onCommand:zephyr-tools.load-and-monitor",
"onCommand:zephyr-tools.init-repo",
"onCommand:zephyr-tools.clean",
"onCommand:zephyr-tools.update",
"onCommand:zephyr-tools.change-runner",
"onCommand:zephyr-tools.change-sysbuild"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "zephyr-tools.setup",
"title": "Zephyr Tools: Setup"
},
{
"command": "zephyr-tools.build-pristine",
"title": "Zephyr Tools: Build Pristine"
},
{
"command": "zephyr-tools.build",
"title": "Zephyr Tools: Build"
},
{
"command": "zephyr-tools.change-board",
"title": "Zephyr Tools: Change Board"
},
{
"command": "zephyr-tools.create-project",
"title": "Zephyr Tools: Create Project"
},
{
"command": "zephyr-tools.change-project",
"title": "Zephyr Tools: Change Project"
},
{
"command": "zephyr-tools.flash",
"title": "Zephyr Tools: Flash"
},
{
"command": "zephyr-tools.flash-and-monitor",
"title": "Zephyr Tools: Flash and Monitor"
},
{
"command": "zephyr-tools.load",
"title": "Zephyr Tools: Load via Bootloader"
},
{
"command": "zephyr-tools.load-and-monitor",
"title": "Zephyr Tools: Load via Bootloader and Monitor"
},
{
"command": "zephyr-tools.setup-newtmgr",
"title": "Zephyr Tools: Setup Newtmgr"
},
{
"command": "zephyr-tools.setup-monitor",
"title": "Zephyr Tools: Setup Serial Monitor"
},
{
"command": "zephyr-tools.monitor",
"title": "Zephyr Tools: Serial Monitor"
},
{
"command": "zephyr-tools.init-repo",
"title": "Zephyr Tools: Init Repo"
},
{
"command": "zephyr-tools.clean",
"title": "Zephyr Tools: Clean"
},
{
"command": "zephyr-tools.update",
"title": "Zephyr Tools: Update Dependencies"
},
{
"command": "zephyr-tools.change-runner",
"title": "Zephyr Tools: Change Runner"
},
{
"command": "zephyr-tools.change-sysbuild",
"title": "Zephyr Tools: Change Sysbuild Enable"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"check-types": "tsc --noEmit",
"package": "npm run check-types && node esbuild.js --production"
},
"devDependencies": {
"@types/fs-extra": "^8.0.1",
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.4",
"@types/node": "^12.11.7",
"@types/node-7z": "^2.1.8",
"@types/vscode": "^1.52.0",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"esbuild": "^0.23.0",
"eslint": "^7.15.0",
"glob": "^7.1.6",
"mocha": "^10.7.0",
"typescript": "^4.1.2",
"vscode-test": "^1.4.1"
},
"dependencies": {
"7zip-bin": "^5.2.0",
"fs-extra": "^10.0.0",
"node-7z": "^3.0.0",
"node-stream-zip": "^1.15.0",
"typed-rest-client": "^1.8.6",
"yaml": "^2.5.0"
},
"extensionPack": [
"ms-vscode.cpptools",
"nordic-semiconductor.nrf-devicetree",
"nordic-semiconductor.nrf-kconfig"
]
}