|
1 | 1 | { |
2 | | - "activationEvents": [ |
3 | | - "onCommand:deviceSimulatorExpress.common.installDependencies", |
4 | | - "onCommand:deviceSimulatorExpress.common.openSerialMonitor", |
5 | | - "onCommand:deviceSimulatorExpress.common.runSimulator", |
6 | | - "onCommand:deviceSimulatorExpress.common.selectSerialPort", |
7 | | - "onCommand:deviceSimulatorExpress.common.gettingStarted", |
8 | | - "onCommand:deviceSimulatorExpress.common.deployToDevice", |
9 | | - "onCommand:deviceSimulatorExpress.common.newFile", |
10 | | - "onCommand:deviceSimulatorExpress.common.openSimulator", |
11 | | - "onDebug" |
12 | | - ], |
| 2 | + "name": "__EXTENSIONNAME__", |
| 3 | + "displayName": "__DISPLAYNAME__", |
| 4 | + "version": "0.0.1", |
| 5 | + "private": false, |
| 6 | + "description": "__DESCRIPTION__", |
| 7 | + "homepage": "HTTPS://GitHub.Com/CodeEditorLand/LandPythonDeviceSimulator#readme", |
| 8 | + "bugs": { |
| 9 | + "url": "HTTPS://GitHub.Com/CodeEditorLand/LandPythonDeviceSimulator/issues" |
| 10 | + }, |
| 11 | + "repository": { |
| 12 | + "type": "git", |
| 13 | + "url": "git+HTTPS://github.com/CodeEditorLand/LandPythonDeviceSimulator.git" |
| 14 | + }, |
| 15 | + "license": "SEE LICENSE IN LICENSE", |
13 | 16 | "author": { |
14 | | - "email": "Land@Playform.Cloud", |
15 | 17 | "name": "Land", |
| 18 | + "email": "Land@Playform.Cloud", |
16 | 19 | "url": "HTTPS://Land.Playform.Cloud" |
17 | 20 | }, |
18 | | - "bugs": { |
19 | | - "url": "HTTPS://GitHub.Com/CodeEditorLand/LandPythonDeviceSimulator/issues" |
| 21 | + "type": "module", |
| 22 | + "main": "./out/extension.js", |
| 23 | + "scripts": { |
| 24 | + "Document": "Document 'Source/**/*.ts'", |
| 25 | + "build": "gulp build", |
| 26 | + "check:python": "black src --check", |
| 27 | + "check:ts": "prettier --config .prettierrc.yaml --check src/**/*.{css,ts,tsx}", |
| 28 | + "clean": "gulp clean", |
| 29 | + "compile": "npm-run-all compile:*", |
| 30 | + "compile:extension": "gulp compile", |
| 31 | + "compile:views": "webpack --mode development", |
| 32 | + "format:python": "black src", |
| 33 | + "format:ts": "prettier --config .prettierrc.yaml --write src/**/*.{css,ts,tsx}", |
| 34 | + "lint:python": "pylint src", |
| 35 | + "lint:ts": "tslint -c tslint.json src/**/*.{ts,tsx}", |
| 36 | + "prepublishOnly": "Build 'Source/**/*.ts'", |
| 37 | + "start": "webpack-dev-server", |
| 38 | + "test:api-tests": "pytest src", |
| 39 | + "test:extension-tests": "node ./out/test/runTest.js", |
| 40 | + "test:ts": "jest", |
| 41 | + "watch:extension": "tsc --watch", |
| 42 | + "watch:views": "webpack --watch --mode development" |
20 | 43 | }, |
21 | 44 | "contributes": { |
22 | 45 | "breakpoints": [ |
|
202 | 225 | } |
203 | 226 | ] |
204 | 227 | }, |
| 228 | + "activationEvents": [ |
| 229 | + "onCommand:deviceSimulatorExpress.common.installDependencies", |
| 230 | + "onCommand:deviceSimulatorExpress.common.openSerialMonitor", |
| 231 | + "onCommand:deviceSimulatorExpress.common.runSimulator", |
| 232 | + "onCommand:deviceSimulatorExpress.common.selectSerialPort", |
| 233 | + "onCommand:deviceSimulatorExpress.common.gettingStarted", |
| 234 | + "onCommand:deviceSimulatorExpress.common.deployToDevice", |
| 235 | + "onCommand:deviceSimulatorExpress.common.newFile", |
| 236 | + "onCommand:deviceSimulatorExpress.common.openSimulator", |
| 237 | + "onDebug" |
| 238 | + ], |
205 | 239 | "dependencies": { |
206 | 240 | "@types/open": "6.1.0", |
207 | 241 | "@types/socket.io": "3.0.1", |
|
214 | 248 | "usb-native": "6.0.0", |
215 | 249 | "util": "0.12.5" |
216 | 250 | }, |
217 | | - "description": "__DESCRIPTION__", |
218 | 251 | "devDependencies": { |
219 | 252 | "@playform/build": "0.0.7", |
220 | 253 | "@playform/document": "0.0.6", |
|
231 | 264 | "ts-loader": "9.5.1", |
232 | 265 | "version-from-git": "1.1.1" |
233 | 266 | }, |
234 | | - "displayName": "__DISPLAYNAME__", |
235 | 267 | "extensionDependencies": [ |
236 | 268 | "ms-python.python" |
237 | 269 | ], |
238 | | - "homepage": "HTTPS://GitHub.Com/CodeEditorLand/LandPythonDeviceSimulator#readme", |
239 | | - "icon": "assets/icon.png", |
240 | | - "instrumentationKey": "__AIKEY__", |
241 | | - "license": "SEE LICENSE IN LICENSE", |
242 | | - "main": "./out/extension.js", |
243 | | - "name": "__EXTENSIONNAME__", |
244 | | - "preview": true, |
245 | | - "private": false, |
246 | 270 | "publishConfig": { |
247 | 271 | "access": "public" |
248 | 272 | }, |
249 | | - "repository": { |
250 | | - "type": "git", |
251 | | - "url": "git+HTTPS://github.com/CodeEditorLand/LandPythonDeviceSimulator.git" |
252 | | - }, |
253 | | - "scripts": { |
254 | | - "Document": "Document 'Source/**/*.ts'", |
255 | | - "build": "gulp build", |
256 | | - "check:python": "black src --check", |
257 | | - "check:ts": "prettier --config .prettierrc.yaml --check src/**/*.{css,ts,tsx}", |
258 | | - "clean": "gulp clean", |
259 | | - "compile": "npm-run-all compile:*", |
260 | | - "compile:extension": "gulp compile", |
261 | | - "compile:views": "webpack --mode development", |
262 | | - "format:python": "black src", |
263 | | - "format:ts": "prettier --config .prettierrc.yaml --write src/**/*.{css,ts,tsx}", |
264 | | - "lint:python": "pylint src", |
265 | | - "lint:ts": "tslint -c tslint.json src/**/*.{ts,tsx}", |
266 | | - "prepublishOnly": "Build 'Source/**/*.ts'", |
267 | | - "start": "webpack-dev-server", |
268 | | - "test:api-tests": "pytest src", |
269 | | - "test:extension-tests": "node ./out/test/runTest.js", |
270 | | - "test:ts": "jest", |
271 | | - "watch:extension": "tsc --watch", |
272 | | - "watch:views": "webpack --watch --mode development" |
273 | | - }, |
274 | | - "type": "module", |
275 | | - "version": "0.0.1" |
| 273 | + "icon": "assets/icon.png", |
| 274 | + "preview": true, |
| 275 | + "instrumentationKey": "__AIKEY__" |
276 | 276 | } |
0 commit comments