-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 2.81 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 2.81 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
{
"name": "madmachine",
"displayName": "MadMachine",
"description": "MadMachine for Visual Studio Code",
"icon": "images/logo.png",
"version": "2.0.0",
"homepage": "https://madmachine.io",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/madmachineio/vscode-madmachine.git"
},
"publisher": "MadMachine",
"engines": {
"vscode": "^1.96.0"
},
"categories": [
"Other"
],
"activationEvents": [
"workspaceContains:**/Package.mmp"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "MadMachine",
"properties": {
"madmachine.sdk.mac": {
"type": "string",
"description": "Set the MadMachine SDK path on macOS",
"order": 1
},
"madmachine.toolchain.mac": {
"type": "string",
"description": "Set the Swift toolchain path on macOS (optional)",
"default": "/Library/Developer/Toolchains/swift-latest.xctoolchain",
"order": 2
},
"madmachine.sdk.linux": {
"type": "string",
"description": "Set the MadMachine SDK path on Linux",
"order": 3
},
"madmachine.toolchain.linux": {
"type": "string",
"description": "Set the Swift toolchain path on Linux (optional)",
"order": 4
},
"madmachine.sdk.windows": {
"type": "string",
"description": "Set the MadMachine SDK path on Windows",
"order": 5
},
"madmachine.toolchain.windows": {
"type": "string",
"description": "Set the Swift toolchain path on Windows (optional)",
"order": 6
}
}
},
"commands": [
{
"command": "madmachine.build",
"title": "MadMachine: Build"
},
{
"command": "madmachine.download",
"title": "MadMachine: Download"
},
{
"command": "madmachine.copy",
"title": "MadMachine: Copy Resources"
},
{
"command": "madmachine.new",
"title": "MadMachine: New Project"
}
],
"views": {
"explorer": [
{
"id": "madmachine",
"name": "MadMachine"
}
]
},
"viewsWelcome": [
{
"view": "madmachine",
"contents": "\n[Build](command:madmachine.build)\n[Download](command:madmachine.download)\n[Copy Resources](command:madmachine.copy)\n[New Project](command:madmachine.new)"
}
]
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test"
},
"devDependencies": {
"@types/vscode": "^1.87.0",
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.56.0",
"typescript": "^5.3.3",
"@vscode/test-cli": "^0.0.6",
"@vscode/test-electron": "^2.3.9"
},
"extensionPack": [
"ms-vscode.vscode-serial-monitor"
]
}