-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
145 lines (145 loc) · 4.12 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
{
"name": "vscode-nanoframework",
"displayName": ".NET nanoFramework",
"description": "Build, deploy and flash your .NET nanoFramework solutions",
"icon": "assets/nF-logo-128.png",
"license": "MIT",
"preview": true,
"version": "0.0.0-placeholder",
"overview": "assets/marketplace/vscode-marketplace-overview.md",
"priceCategory": "free",
"publisher": "nanoframework",
"private": false,
"identity": {
"internalName": "vscode-nanoframework"
},
"assetFiles": [
{
"pathOnDisk": "assets/marketplace/nano-vs-code.gif",
"targetPath": "nano-vs-code.gif"
}
],
"engines": {
"vscode": "^1.90.0"
},
"repository": {
"type": "git",
"url": "https://github.com/nanoframework/nf-VSCodeExtension.git"
},
"homepage": "https://nanoframework.net",
"bugs": {
"url": "https://github.com/nanoframework/Home/issues"
},
"categories": [
"Programming Languages",
"Other"
],
"badges": [
{
"description": "Build Status",
"href": "https://github.com/nanoframework/nf-VSCodeExtension",
"url": "https://dev.azure.com/nanoframework/VSCodeExtension/_apis/build/status/nanoframework.nf-VSCodeExtension?branchName=develop"
}
],
"sponsor": {
"url": "https://github.com/sponsors/nanoframework"
},
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "vscode-nanoframework.nfbuild",
"title": "nanoFramework: Build Project"
},
{
"command": "vscode-nanoframework.nfdeploy",
"title": "nanoFramework: Deploy Project"
},
{
"command": "vscode-nanoframework.nfflash",
"title": "nanoFramework: Flash device"
},
{
"command": "vscode-nanoframework.nfdeployalt",
"title": "nanoFramework: Deploy Project (alternative method)"
},
{
"command": "vscode-nanoframework.nfcreate",
"title": "nanoFramework: Create New Solution"
},
{
"command": "vscode-nanoframework.nfadd",
"title": "nanoFramework: Add a Project to existing Solution"
}
],
"menus": {
"explorer/context": [
{
"when": "resourceExtname == .sln",
"command": "vscode-nanoframework.nfbuild",
"group": "navigation@1"
},
{
"when": "resourceExtname == .sln",
"command": "vscode-nanoframework.nfdeploy",
"group": "navigation@1"
},
{
"when": "resourceExtname == .sln",
"command": "vscode-nanoframework.nfdeployalt",
"group": "navigation@1"
},
{
"when": "resourceExtname == ",
"command": "vscode-nanoframework.nfcreate",
"group": "navigation@1"
},
{
"when": "resourceExtname == .sln",
"command": "vscode-nanoframework.nfadd",
"group": "navigation@1"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"build:prod": "npm run compile",
"postinstall": "gulp build",
"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",
"clean": "rimraf ./out ./coverage",
"package": "npm run clean && nbgv-setversion && vsce package --githubBranch develop --out ./vscode-nanoframework.vsix && nbgv cloud -a -c",
"deploy": "vsce publish"
},
"devDependencies": {
"@types/glob": "^8.0.0",
"@types/mocha": "^10.0.7",
"@types/vscode": "^1.90.0",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.1",
"@vscode/test-electron": "^2.4.1",
"download": "^8.0.0",
"eslint": "^8.23.0",
"glob": "^11.0.0",
"gulp": "^5.0.0",
"mocha": "^10.7.0",
"nerdbank-gitversioning": "^3.6.139",
"ts-loader": "^9.5.1",
"typescript": "^5.5.3",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@types/node": "22.x",
"@vscode/vsce": "^2.31.1",
"axios": "^1.7.2",
"extract-zip": "^2.0.1",
"globby": "^11.0.4",
"node-usb-native": "^0.0.20"
}
}