-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 790 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 790 Bytes
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
{
"name": "Roku BrighterScript Template",
"version": "3.0.0",
"description": "A template for Roku development using BrighterScript.",
"license": "MIT",
"private": true,
"scripts": {
"build": "node ./scripts/build.js",
"build:debug": "ENV=dev node ./scripts/build.js",
"build:prod": "ENV=prod node ./scripts/build.js",
"debug": "node ./scripts/debug.js",
"release": "node ./scripts/release.js",
"roku-deploy": "node ./scripts/roku-deploy.js"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"devDependencies": {
"brighterscript": "^0.68.4",
"dotenv": "^16.4.7",
"fs-extra": "^11.1.1",
"lodash": "^4.17.21",
"roku-deploy": "^3.13.0"
}
}