Skip to content

Commit 199ef5e

Browse files
squash!
1 parent 8f216da commit 199ef5e

1 file changed

Lines changed: 51 additions & 51 deletions

File tree

package.json

Lines changed: 51 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,45 @@
11
{
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",
1316
"author": {
14-
"email": "Land@Playform.Cloud",
1517
"name": "Land",
18+
"email": "Land@Playform.Cloud",
1619
"url": "HTTPS://Land.Playform.Cloud"
1720
},
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"
2043
},
2144
"contributes": {
2245
"breakpoints": [
@@ -202,6 +225,17 @@
202225
}
203226
]
204227
},
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+
],
205239
"dependencies": {
206240
"@types/open": "6.1.0",
207241
"@types/socket.io": "3.0.1",
@@ -214,7 +248,6 @@
214248
"usb-native": "6.0.0",
215249
"util": "0.12.5"
216250
},
217-
"description": "__DESCRIPTION__",
218251
"devDependencies": {
219252
"@playform/build": "0.0.7",
220253
"@playform/document": "0.0.6",
@@ -231,46 +264,13 @@
231264
"ts-loader": "9.5.1",
232265
"version-from-git": "1.1.1"
233266
},
234-
"displayName": "__DISPLAYNAME__",
235267
"extensionDependencies": [
236268
"ms-python.python"
237269
],
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,
246270
"publishConfig": {
247271
"access": "public"
248272
},
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__"
276276
}

0 commit comments

Comments
 (0)