-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 991 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 991 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "@gumadeiras/roku",
"version": "1.1.4",
"description": "CLI and library for controlling Roku devices.",
"homepage": "https://github.com/gumadeiras/roku-cli",
"repository": {
"type": "git",
"url": "git+https://github.com/gumadeiras/roku-cli.git"
},
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"bin": {
"roku": "bin/roku.js"
},
"files": [
"bin/roku.js",
"dist/src",
"service/roku-bridge.plist",
"service/roku-bridge.service",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"prepare": "npm run build",
"test": "npm run build && node --test dist/tests/*.test.js",
"release:check": "node ./scripts/release-check.js"
},
"engines": {
"node": ">=18"
},
"keywords": [
"roku",
"ecp",
"cli",
"typescript"
],
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/node": "^22.10.0",
"typescript": "^5.6.3"
}
}