|
| 1 | +{ |
| 2 | + "name": "vscode-typescript-dev", |
| 3 | + "displayName": "TSC Dev", |
| 4 | + "description": "An extension for working in the TypeScript codebasegh", |
| 5 | + "version": "0.0.1", |
| 6 | + "repository": { |
| 7 | + "type": "git", |
| 8 | + "url": "" |
| 9 | + }, |
| 10 | + "publisher": "Orta", |
| 11 | + "engines": { |
| 12 | + "vscode": "^1.36.0" |
| 13 | + }, |
| 14 | + "categories": [ |
| 15 | + "Other" |
| 16 | + ], |
| 17 | + "activationEvents": [ |
| 18 | + "workspaceContains:**/src/compiler/checker.ts" |
| 19 | + ], |
| 20 | + "main": "./out/extension.js", |
| 21 | + "contributes": { |
| 22 | + "commands": [ |
| 23 | + { |
| 24 | + "command": "io.orta.typescript-dev.declare-current-test-file", |
| 25 | + "title": "TSC: Declare current test file", |
| 26 | + "category": "TSC" |
| 27 | + }, |
| 28 | + { |
| 29 | + "command": "io.orta.typescript-dev.run-current-test-file", |
| 30 | + "title": "TSC: Run tests", |
| 31 | + "category": "TSC" |
| 32 | + } |
| 33 | + ] |
| 34 | + }, |
| 35 | + "scripts": { |
| 36 | + "vscode:prepublish": "yarn run compile", |
| 37 | + "compile": "tsc -p ./", |
| 38 | + "watch": "tsc -watch -p ./", |
| 39 | + "pretest": "yarn run compile", |
| 40 | + "test": "node ./out/test/runTest.js" |
| 41 | + }, |
| 42 | + "devDependencies": { |
| 43 | + "@types/glob": "^7.1.1", |
| 44 | + "@types/mocha": "^5.2.6", |
| 45 | + "@types/node": "^10.12.21", |
| 46 | + "@types/vscode": "^1.36.0", |
| 47 | + "glob": "^7.1.4", |
| 48 | + "mocha": "^6.1.4", |
| 49 | + "typescript": "^3.3.1", |
| 50 | + "tslint": "^5.12.1", |
| 51 | + "vscode-test": "^1.0.0-next.0" |
| 52 | + } |
| 53 | +} |
0 commit comments