microsoft/vscode-react-native

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
8ba55f4cea4f6a1e4f2b2c5258f02474da6c01b0

Branches

Tags

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

Clone

HTTPS

Download ZIP

package.json

97lines · 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 "enableBreakpointsFor": {
49 "languageIds": [
50 "javascript",
51 "javascriptreact",
52 "typescript",
53 "typescriptreact"
54 ]
55 },
56
57
58 "initialConfigurations": [
59 {
60 "program": "${workspaceRoot}/.vscode/launch-react-native.js",
61 "name": "Run on Android",
62 "type": "node",
63 "request": "launch",
64 "platform": "node",
65 "target": "device",
66 "sourceMaps": true
67 }
68 ]
69 }
70 ]
71 },
72 "scripts": {
73 "start": "node node_modules/react-native/local-cli/cli.js start"
74 },
75 "dependencies": {
76 "ios-sim": "^5.0.6",
77 "lodash": "~4.0.0",
78 "plist-with-patches": "^0.5.1",
79 "q": "^1.4.1",
80 "shelljs": "^0.5.3",
81 "vscode": "^0.10.7",
82 "websocket": "^1.0.22"
83 },
84 "devDependencies": {
85 "gulp": "^3.9.0",
86 "gulp-mocha": "^2.1.3",
87 "gulp-sourcemaps": "^1.5.2",
88 "gulp-tslint": "^3.3.1",
89 "gulp-typescript": "^2.8.0",
90 "gulp-util": "^3.0.5",
91 "mocha": "^2.3.3",
92 "mockery": "^1.4.0",
93 "should": "^4.6.5",
94 "sinon": "^1.17.2",
95 "tslint": "^2.5.1"
96 }
97}
98