|
| 1 | +{ |
| 2 | + "name": "vscode-llvm", |
| 3 | + "displayName": "vscode-llvm", |
| 4 | + "description": "a tool for LLVM developer", |
| 5 | + "version": "0.0.1", |
| 6 | + "engines": { |
| 7 | + "vscode": "^1.71.0" |
| 8 | + }, |
| 9 | + "categories": [ |
| 10 | + "Other" |
| 11 | + ], |
| 12 | + "activationEvents": [ |
| 13 | + "onCommand:vscode-llvm.helloWorld", |
| 14 | + "onView:llvm-pipeline-view", |
| 15 | + "onView:llvm-pass-view" |
| 16 | + ], |
| 17 | + "main": "./dist/extension.js", |
| 18 | + "contributes": { |
| 19 | + "commands": [ |
| 20 | + { |
| 21 | + "command": "vscode-llvm.helloWorld", |
| 22 | + "title": "Hello World" |
| 23 | + }, |
| 24 | + { |
| 25 | + "command": "llvmPipelineView.settings", |
| 26 | + "title": "LLVM Pipeline View Settings", |
| 27 | + "icon": "$(gear)" |
| 28 | + } |
| 29 | + ], |
| 30 | + "viewsContainers": { |
| 31 | + "activitybar": [{ |
| 32 | + "id": "vscode-llvm", |
| 33 | + "title": "LLVM", |
| 34 | + "icon": "resources/LLVM.svg" |
| 35 | + }] |
| 36 | + }, |
| 37 | + "views": { |
| 38 | + "vscode-llvm": [ |
| 39 | + { |
| 40 | + "id": "llvm-pipeline-view", |
| 41 | + "name": "LLVM Pipeline" |
| 42 | + }, |
| 43 | + { |
| 44 | + "id": "llvm-pass-view", |
| 45 | + "name": "LLVM Available Passes" |
| 46 | + } |
| 47 | + ] |
| 48 | + }, |
| 49 | + "menus": { |
| 50 | + "view/title": [ |
| 51 | + { |
| 52 | + "command": "llvmPipelineView.settings", |
| 53 | + "when": "view == llvm-pipeline-view", |
| 54 | + "group": "navigation" |
| 55 | + } |
| 56 | + ] |
| 57 | + } |
| 58 | + }, |
| 59 | + "scripts": { |
| 60 | + "vscode:prepublish": "yarn run package", |
| 61 | + "compile": "webpack", |
| 62 | + "watch": "webpack --watch", |
| 63 | + "package": "webpack --mode production --devtool hidden-source-map", |
| 64 | + "compile-tests": "tsc -p . --outDir out", |
| 65 | + "watch-tests": "tsc -p . -w --outDir out", |
| 66 | + "pretest": "yarn run compile-tests && yarn run compile && yarn run lint", |
| 67 | + "lint": "eslint src --ext ts", |
| 68 | + "test": "node ./out/test/runTest.js" |
| 69 | + }, |
| 70 | + "devDependencies": { |
| 71 | + "@types/vscode": "^1.71.0", |
| 72 | + "@types/glob": "^7.2.0", |
| 73 | + "@types/mocha": "^9.1.1", |
| 74 | + "@types/node": "16.x", |
| 75 | + "@typescript-eslint/eslint-plugin": "^5.31.0", |
| 76 | + "@typescript-eslint/parser": "^5.31.0", |
| 77 | + "eslint": "^8.20.0", |
| 78 | + "glob": "^8.0.3", |
| 79 | + "mocha": "^10.0.0", |
| 80 | + "typescript": "^4.7.4", |
| 81 | + "ts-loader": "^9.3.1", |
| 82 | + "webpack": "^5.74.0", |
| 83 | + "webpack-cli": "^4.10.0", |
| 84 | + "@vscode/test-electron": "^2.1.5" |
| 85 | + } |
| 86 | +} |
0 commit comments