microsoft/vscode-react-native

Public

mirrored from https://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
7b34131619762e11e771a0ad4827bcd46e342214

Branches

Tags

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

Clone

HTTPS

Download ZIP

package.json

80lines · 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": "reactnative",
48 "label": "React Native",
49
50 "initialConfigurations": [
51 {
52 "program": "${workspaceRoot}/.vscode/launchReactNative.js",
53 "name": "Run on Android",
54 "type": "node",
55 "request": "launch",
56 "platform": "node",
57 "target": "device",
58 "sourceMaps": true
59 }
60 ]
61 }
62 ]
63 },
64 "scripts": {
65 "start": "node node_modules/react-native/local-cli/cli.js start"
66 },
67 "dependencies": {
68 "q": "^1.4.1",
69 "vscode": "^0.10.7"
70 },
71 "devDependencies": {
72 "gulp": "^3.9.0",
73 "gulp-mocha": "^2.1.3",
74 "gulp-sourcemaps": "^1.5.2",
75 "gulp-tslint": "^3.3.1",
76 "gulp-typescript": "^2.8.0",
77 "gulp-util": "^3.0.5",
78 "tslint": "^2.5.1"
79 }
80}