microsoft/vscode-react-native
Publicmirrored fromhttps://github.com/microsoft/vscode-react-nativeAvailable
package.json
107lines · modecode
| 1 | { |
| 2 | "name": "vscode-react-native", |
| 3 | "displayName": "vscode-react-native", |
| 4 | "version": "0.0.1", |
| 5 | "private": true, |
| 6 | "publisher": "Microsoft", |
| 7 | "description": "VS Code Extension for React Native applications", |
| 8 | "license": "MIT", |
| 9 | "repository": { |
| 10 | "type": "git", |
| 11 | "url": "https://github.com/Microsoft/vscode-rnxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" |
| 12 | }, |
| 13 | "engines": { |
| 14 | "vscode": "^0.10.1" |
| 15 | }, |
| 16 | "categories": [ |
| 17 | "Debuggers", |
| 18 | "Other" |
| 19 | ], |
| 20 | "activationEvents": [ |
| 21 | "onLanguage:javascript", |
| 22 | "onLanguage:typescript", |
| 23 | "workspaceContains:config.xml" |
| 24 | ], |
| 25 | "main": "./out/rn-extension", |
| 26 | "contributes": { |
| 27 | "commands": [ |
| 28 | { |
| 29 | "command": "reactNative.runAndroid", |
| 30 | "title": "React Native: Run Android" |
| 31 | }, |
| 32 | { |
| 33 | "command": "reactNative.runIos", |
| 34 | "title": "React Native: Run iOS" |
| 35 | }, |
| 36 | { |
| 37 | "command": "reactNative.startPackager", |
| 38 | "title": "React Native: Start Packager" |
| 39 | }, |
| 40 | { |
| 41 | "command": "reactNative.stopPackager", |
| 42 | "title": "React Native: Stop Packager" |
| 43 | } |
| 44 | ], |
| 45 | "debuggers": [ |
| 46 | { |
| 47 | "type": "node", |
| 48 | "enableBreakpointsFor": { |
| 49 | "languageIds": [ |
| 50 | "javascript", |
| 51 | "typescript", |
| 52 | "typescriptreact" |
| 53 | ] |
| 54 | }, |
| 55 | |
| 56 | |
| 57 | "initialConfigurations": [ |
| 58 | { |
| 59 | "program": "out/launch-react-native.js", |
| 60 | "name": "Run on Android", |
| 61 | "type": "node", |
| 62 | "request": "launch", |
| 63 | "platform": "node", |
| 64 | "target": "device", |
| 65 | "sourceMaps": true |
| 66 | }, |
| 67 | { |
| 68 | "name": "Run on iOS", |
| 69 | "type": "node", |
| 70 | "request": "launch", |
| 71 | "platform": "node", |
| 72 | "target": "device", |
| 73 | "sourceMaps": true |
| 74 | } |
| 75 | ] |
| 76 | } |
| 77 | ] |
| 78 | }, |
| 79 | "scripts": { |
| 80 | "start": "node node_modules/react-native/local-cli/cli.js start" |
| 81 | }, |
| 82 | "dependencies": { |
| 83 | "ios-sim": "^5.0.6", |
| 84 | "q": "^1.4.1", |
| 85 | "react-native": "^0.18.0", |
| 86 | "request": "^2.67.0", |
| 87 | "shelljs": "^0.5.3", |
| 88 | "vscode": "^0.10.7", |
| 89 | "websocket": "^1.0.22" |
| 90 | }, |
| 91 | "devDependencies": { |
| 92 | "gulp": "^3.9.0", |
| 93 | "gulp-mocha": "^2.1.3", |
| 94 | "gulp-sourcemaps": "^1.5.2", |
| 95 | "gulp-tslint": "^3.3.1", |
| 96 | "gulp-typescript": "^2.8.0", |
| 97 | "gulp-util": "^3.0.5", |
| 98 | "mocha": "^2.3.3", |
| 99 | "mockery": "^1.4.0", |
| 100 | "rimraf": "^2.5.0", |
| 101 | "should": "^4.6.5", |
| 102 | "sinon": "^1.17.2", |
| 103 | "tslint": "^2.5.1", |
| 104 | "typescript": "^1.6.2", |
| 105 | "vscode": "0.10.x" |
| 106 | } |
| 107 | } |