-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
105 lines (105 loc) · 3.19 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "roku-development",
"displayName": "Roku Development",
"description": "An extension for VS Code to debug and deploy Roku apps",
"version": "0.2.3",
"publisher": "fuzecc",
"icon": "icons/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/adheus/vs-roku-development.git"
},
"engines": {
"vscode": "^1.28.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:roku.dev.deployAndDebug",
"onCommand:roku.dev.deploy",
"onCommand:roku.dev.debug"
],
"main": "./out/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "Roku configuration",
"properties": {
"roku-development.ip": {
"type": [
"string"
],
"default": "192.168.0.46",
"description": "Roku device IP address used for deployment."
},
"roku-development.username": {
"type": [
"string"
],
"default": "rokudev",
"description": "Roku device developer mode username"
},
"roku-development.password": {
"type": [
"string"
],
"default": "",
"description": "Roku device developer mode password"
},
"roku-development.dir": {
"type": [
"string"
],
"default": "",
"description": "Directory to deploy relative to workspace"
},
"roku-development.files": {
"type": [
"array"
],
"default": [
"manifest",
"**/*.*"
],
"description": "Array of files to pass in to roku-deploy"
}
}
},
"commands": [
{
"command": "roku.dev.deployAndDebug",
"title": "Deploy & Debug",
"category": "Roku"
},
{
"command": "roku.dev.deploy",
"title": "Deploy",
"category": "Roku"
},
{
"command": "roku.dev.debug",
"title": "Debug console",
"category": "Roku"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "^1.1.21",
"tslint": "^5.8.0",
"@types/node": "^8.10.25",
"@types/mocha": "^2.2.42"
},
"dependencies": {
"axios": "^0.18.0",
"roku-deploy": "^2.0.0"
}
}