|
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" |
| 2 | + "name": "__EXTENSIONNAME__", |
| 3 | + "displayName": "__DISPLAYNAME__", |
| 4 | + "version": "0.0.1", |
| 5 | + "private": false, |
| 6 | + "description": "__DESCRIPTION__", |
| 7 | + "keywords": [ |
| 8 | + "land" |
12 | 9 | ], |
| 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 | + }, |
13 | 47 | "contributes": { |
14 | 48 | "breakpoints": [ |
15 | 49 | { |
|
194 | 228 | } |
195 | 229 | ] |
196 | 230 | }, |
| 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 | + ], |
197 | 242 | "dependencies": { |
198 | 243 | "@types/open": "6.1.0", |
199 | 244 | "@types/socket.io": "3.0.1", |
|
206 | 251 | "usb-native": "6.0.0", |
207 | 252 | "util": "0.12.5" |
208 | 253 | }, |
209 | | - "description": "__DESCRIPTION__", |
210 | 254 | "devDependencies": { |
211 | 255 | "@playform/build": "0.0.7", |
| 256 | + "@playform/document": "0.0.6", |
212 | 257 | "@types/glob": "8.1.0", |
213 | 258 | "@types/node": "20.12.7", |
214 | 259 | "css-loader": "7.1.1", |
|
222 | 267 | "ts-loader": "9.5.1", |
223 | 268 | "version-from-git": "1.1.1" |
224 | 269 | }, |
225 | | - "displayName": "__DISPLAYNAME__", |
226 | 270 | "extensionDependencies": [ |
227 | 271 | "ms-python.python" |
228 | 272 | ], |
| 273 | + "publishConfig": { |
| 274 | + "access": "public" |
| 275 | + }, |
229 | 276 | "icon": "assets/icon.png", |
230 | | - "instrumentationKey": "__AIKEY__", |
231 | | - "main": "./out/extension.js", |
232 | | - "name": "__EXTENSIONNAME__", |
233 | 277 | "preview": true, |
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 | | - } |
| 278 | + "instrumentationKey": "__AIKEY__" |
255 | 279 | } |
0 commit comments