|
1 | 1 | { |
2 | 2 | "name": "processing-vscode", |
3 | | - "displayName": "Processing VSCode", |
4 | | - "description": "Processing Language Support for VSCode", |
5 | 3 | "version": "2.3.0", |
6 | | - "publisher": "Luke-zhang-04", |
7 | | - "engines": { |
8 | | - "vscode": "^1.48.0" |
9 | | - }, |
10 | | - "homepage": "https://github.com/Luke-zhang-04/processing-vscode", |
| 4 | + "description": "Processing Language Support for VSCode", |
| 5 | + "license": "MIT", |
11 | 6 | "repository": { |
12 | 7 | "type": "git", |
13 | 8 | "url": "https://github.com/Luke-zhang-04/processing-vscode.git" |
14 | 9 | }, |
15 | | - "categories": [ |
16 | | - "Programming Languages", |
17 | | - "Snippets" |
18 | | - ], |
| 10 | + "homepage": "https://github.com/Luke-zhang-04/processing-vscode", |
19 | 11 | "bugs": "https://github.com/Luke-zhang-04/processing-vscode/issues", |
20 | | - "license": "MIT", |
| 12 | + "main": "./processing-vscode.js", |
| 13 | + "engines": { |
| 14 | + "vscode": "^1.48.0" |
| 15 | + }, |
| 16 | + "scripts": { |
| 17 | + "build": "rollup -c rollup.config.js", |
| 18 | + "deploy": "vsce publish", |
| 19 | + "format": "prettier . --write && eslint --ext ts --fix --cache", |
| 20 | + "lint": "eslint --ext ts src --max-warnings 0 --cache", |
| 21 | + "vscode:prepublish": "rollup -c rollup.config.js" |
| 22 | + }, |
21 | 23 | "keywords": [ |
22 | 24 | "processing", |
23 | 25 | "pde", |
|
28 | 30 | "diagnostics", |
29 | 31 | "runner" |
30 | 32 | ], |
| 33 | + "devDependencies": { |
| 34 | + "@rollup/plugin-node-resolve": "^13.0.0", |
| 35 | + "@rollup/plugin-typescript": "^8.2.1", |
| 36 | + "@rollup/plugin-yaml": "^3.0.0", |
| 37 | + "@types/glob": "^7.1.4", |
| 38 | + "@types/jsdom": "^16.2.13", |
| 39 | + "@types/node": "^16.3.1", |
| 40 | + "@types/node-fetch": "^2.5.11", |
| 41 | + "@types/vscode": "^1.58.0", |
| 42 | + "@typescript-eslint/eslint-plugin": "^4.28.2", |
| 43 | + "@typescript-eslint/parser": "^4.28.2", |
| 44 | + "eslint": "^7.30.0", |
| 45 | + "eslint-plugin-prefer-arrow": "^1.2.3", |
| 46 | + "glob": "^7.1.7", |
| 47 | + "jsdom": "^16.6.0", |
| 48 | + "node-fetch": "^2.6.1", |
| 49 | + "prettier": "^2.3.2", |
| 50 | + "prettier-plugin-jsdoc": "^0.3.23", |
| 51 | + "prettier-plugin-package": "^1.3.0", |
| 52 | + "rollup": "^2.53.0", |
| 53 | + "rollup-plugin-progress": "^1.1.2", |
| 54 | + "rollup-plugin-terser": "^7.0.2", |
| 55 | + "tslib": "^2.3.0", |
| 56 | + "typescript": "^4.3.5", |
| 57 | + "vsce": "^1.95.1", |
| 58 | + "yaml": "^1.10.2" |
| 59 | + }, |
31 | 60 | "activationEvents": [ |
32 | 61 | "onCommand:processing.OpenExtensionDocumentation", |
33 | 62 | "onCommand:processing.OpenDocs", |
|
38 | 67 | "onLanguage:pde", |
39 | 68 | "onLanguage:python" |
40 | 69 | ], |
41 | | - "main": "./processing-vscode.js", |
| 70 | + "categories": [ |
| 71 | + "Programming Languages", |
| 72 | + "Snippets" |
| 73 | + ], |
42 | 74 | "contributes": { |
43 | 75 | "commands": [ |
44 | 76 | { |
|
202 | 234 | } |
203 | 235 | } |
204 | 236 | }, |
205 | | - "scripts": { |
206 | | - "vscode:prepublish": "rollup -c rollup.config.js", |
207 | | - "build": "rollup -c rollup.config.js", |
208 | | - "deploy": "vsce publish", |
209 | | - "lint": "eslint src/\"{*,**/*}\".ts --max-warnings=0", |
210 | | - "format": "prettier . --write && eslint src/\"{*,**/*}\".ts --fix" |
211 | | - }, |
212 | | - "devDependencies": { |
213 | | - "@rollup/plugin-node-resolve": "^13.0.0", |
214 | | - "@rollup/plugin-typescript": "^8.2.1", |
215 | | - "@rollup/plugin-yaml": "^3.0.0", |
216 | | - "@types/glob": "^7.1.4", |
217 | | - "@types/jsdom": "^16.2.13", |
218 | | - "@types/node": "^16.3.1", |
219 | | - "@types/node-fetch": "^2.5.11", |
220 | | - "@types/vscode": "^1.58.0", |
221 | | - "@typescript-eslint/eslint-plugin": "^4.28.2", |
222 | | - "@typescript-eslint/parser": "^4.28.2", |
223 | | - "eslint": "^7.30.0", |
224 | | - "eslint-plugin-prefer-arrow": "^1.2.3", |
225 | | - "glob": "^7.1.7", |
226 | | - "jsdom": "^16.6.0", |
227 | | - "node-fetch": "^2.6.1", |
228 | | - "prettier": "^2.3.2", |
229 | | - "prettier-plugin-jsdoc": "^0.3.23", |
230 | | - "rollup": "^2.53.0", |
231 | | - "rollup-plugin-progress": "^1.1.2", |
232 | | - "rollup-plugin-terser": "^7.0.2", |
233 | | - "tslib": "^2.3.0", |
234 | | - "typescript": "^4.3.5", |
235 | | - "vsce": "^1.95.1", |
236 | | - "yaml": "^1.10.2" |
237 | | - }, |
| 237 | + "displayName": "Processing VSCode", |
238 | 238 | "icon": "images/processing.png", |
239 | | - "dependencies": {} |
| 239 | + "publisher": "Luke-zhang-04" |
240 | 240 | } |
0 commit comments