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