microsoft/vscode-react-native
Publicmirrored from https://github.com/microsoft/vscode-react-nativeAvailable
package.json
95lines · modeblame
9cf5eef2leolee10 years ago | 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", | |
14c406ebJimmy Thomson10 years ago | 11 | "url": "https://github.com/Microsoft/vscode-react-native" |
9cf5eef2leolee10 years ago | 12 | }, |
| 13 | "engines": { | |
| 14 | "vscode": "^0.10.1" | |
| 15 | }, | |
| 16 | "categories": [ | |
| 17 | "Debuggers", | |
| 18 | "Other" | |
| 19 | ], | |
| 20 | "activationEvents": [ | |
14c406ebJimmy Thomson10 years ago | 21 | "workspaceContains:package.json" |
9cf5eef2leolee10 years ago | 22 | ], |
| 23 | "main": "./out/rn-extension", | |
| 24 | "contributes": { | |
| 25 | "commands": [ | |
| 26 | { | |
| 27 | "command": "reactNative.runAndroid", | |
| 28 | "title": "React Native: Run Android" | |
| 29 | }, | |
| 30 | { | |
| 31 | "command": "reactNative.runIos", | |
| 32 | "title": "React Native: Run iOS" | |
| 33 | }, | |
| 34 | { | |
| 35 | "command": "reactNative.startPackager", | |
| 36 | "title": "React Native: Start Packager" | |
| 37 | }, | |
| 38 | { | |
| 39 | "command": "reactNative.stopPackager", | |
| 40 | "title": "React Native: Stop Packager" | |
| 41 | } | |
| 42 | ], | |
| 43 | "debuggers": [ | |
| 44 | { | |
8ba55f4cJimmy Thomson10 years ago | 45 | "type": "reactnative", |
5d1a2d3cJimmy Thomson10 years ago | 46 | "label": "React Native", |
9cf5eef2leolee10 years ago | 47 | "initialConfigurations": [ |
| 48 | { | |
3fb37ad5unknown10 years ago | 49 | "name": "Debug Android", |
7b341316Jimmy Thomson10 years ago | 50 | "program": "${workspaceRoot}/.vscode/launchReactNative.js", |
9cf5eef2leolee10 years ago | 51 | "type": "node", |
3fb37ad5unknown10 years ago | 52 | "request": "launch", |
3af9a124unknown10 years ago | 53 | "args": [ |
| 54 | "android" | |
8500bbc4dlebu10 years ago | 55 | ], |
| 56 | "sourceMaps": true, | |
8ab8eac0dlebu10 years ago | 57 | "outDir": "${workspaceRoot}/.vscode/.react" |
3fb37ad5unknown10 years ago | 58 | }, |
| 59 | { | |
| 60 | "name": "Debug iOS", | |
| 61 | "program": "${workspaceRoot}/.vscode/launchReactNative.js", | |
| 62 | "type": "node", | |
| 63 | "request": "launch", | |
3af9a124unknown10 years ago | 64 | "args": [ |
| 65 | "ios" | |
8500bbc4dlebu10 years ago | 66 | ], |
| 67 | "sourceMaps": true, | |
8ab8eac0dlebu10 years ago | 68 | "outDir": "${workspaceRoot}/.vscode/.react" |
9cf5eef2leolee10 years ago | 69 | } |
| 70 | ] | |
| 71 | } | |
| 72 | ] | |
| 73 | }, | |
| 74 | "scripts": { | |
eb7292d2Jimmy Thomson10 years ago | 75 | "start": "node node_modules/react-native/local-cli/cli.js start", |
| 76 | "vscode:prepublish": "gulp" | |
9cf5eef2leolee10 years ago | 77 | }, |
| 78 | "dependencies": { | |
| 79 | "q": "^1.4.1", | |
2f10b3adunknown10 years ago | 80 | "websocket": "^1.0.22" |
9cf5eef2leolee10 years ago | 81 | }, |
| 82 | "devDependencies": { | |
3af9a124unknown10 years ago | 83 | "vscode": "^0.10.7", |
| 84 | "vsce": "^1.0.0", | |
| 85 | "run-sequence": "^1.1.5", | |
9cf5eef2leolee10 years ago | 86 | "gulp": "^3.9.0", |
| 87 | "gulp-mocha": "^2.1.3", | |
| 88 | "gulp-sourcemaps": "^1.5.2", | |
| 89 | "gulp-tslint": "^3.3.1", | |
| 90 | "gulp-typescript": "^2.8.0", | |
| 91 | "gulp-util": "^3.0.5", | |
89973b41dlebu10 years ago | 92 | "tslint": "^2.5.1", |
| 93 | "del": "2.2.0" | |
9cf5eef2leolee10 years ago | 94 | } |
3af9a124unknown10 years ago | 95 | } |