microsoft/vscode-react-native

Public

mirrored fromhttps://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
a31b007c2af965bbb579b8e9ae0054a403891c95

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

package.json

89lines · 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-react-native"
12 },
13 "engines": {
14 "vscode": "^0.10.1"
15 },
16 "categories": [
17 "Debuggers",
18 "Other"
19 ],
20 "activationEvents": [
21 "workspaceContains:package.json"
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 {
45 "type": "reactnative",
46 "label": "React Native",
47
48 "initialConfigurations": [
49 {
50 "name": "Debug Android",
51 "program": "${workspaceRoot}/.vscode/launchReactNative.js",
52 "type": "node",
53 "request": "launch",
54 "args": ["android"]
55 },
56 {
57 "name": "Debug iOS",
58 "program": "${workspaceRoot}/.vscode/launchReactNative.js",
59 "type": "node",
60 "request": "launch",
61 "args": ["ios"]
62 }
63 ]
64 }
65 ]
66 },
67 "scripts": {
68 "start": "node node_modules/react-native/local-cli/cli.js start",
69 "vscode:prepublish": "gulp"
70 },
71 "dependencies": {
72 "q": "^1.4.1",
73 "vscode": "^0.10.7"
74 },
75 "devDependencies": {
76 "gulp": "^3.9.0",
77 "gulp-mocha": "^2.1.3",
78 "gulp-sourcemaps": "^1.5.2",
79 "gulp-tslint": "^3.3.1",
80 "gulp-typescript": "^2.8.0",
81 "gulp-util": "^3.0.5",
82 "tslint": "^2.5.1",
83 "vsce": "^1.0.0",
84 "run-sequence": "^1.1.5",
85 "websocket": "^1.0.22",
86 "lodash": "^4.0.1",
87 "request":"^2.69.0"
88 }
89}
90