microsoft/vscode-react-native

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
411f79a29b6b43489a3d4930d18c1c3a3674e0e6

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-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/launch-react-native.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 "ios-sim": "^5.0.6",
69 "lodash": "~4.0.0",
70 "plist-with-patches": "^0.5.1",
71 "q": "^1.4.1",
72 "shelljs": "^0.5.3",
73 "vscode": "^0.10.7",
74 "websocket": "^1.0.22"
75 },
76 "devDependencies": {
77 "gulp": "^3.9.0",
78 "gulp-mocha": "^2.1.3",
79 "gulp-sourcemaps": "^1.5.2",
80 "gulp-tslint": "^3.3.1",
81 "gulp-typescript": "^2.8.0",
82 "gulp-util": "^3.0.5",
83 "mocha": "^2.3.3",
84 "mockery": "^1.4.0",
85 "should": "^4.6.5",
86 "sinon": "^1.17.2",
87 "tslint": "^2.5.1"
88 }
89}
90