phimpal-tv 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +113 -0
- package/SPECS.md +342 -0
- package/mod.js +882 -0
- package/package.json +26 -0
package/package.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "phimpal-tv",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "D-pad (TV remote) navigation for phimpal.com on Samsung Tizen TVs, as a TizenBrew site-modification module.",
|
|
5
|
+
"appName": "PhimPal TV",
|
|
6
|
+
"packageType": "mods",
|
|
7
|
+
"websiteURL": "https://phimpal.com/",
|
|
8
|
+
"main": "mod.js",
|
|
9
|
+
"keys": [
|
|
10
|
+
"MediaPlayPause",
|
|
11
|
+
"MediaPlay",
|
|
12
|
+
"MediaPause",
|
|
13
|
+
"ChannelUp",
|
|
14
|
+
"ChannelDown"
|
|
15
|
+
],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"build": "node build.js"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"mod.js",
|
|
21
|
+
"README.md",
|
|
22
|
+
"SPECS.md"
|
|
23
|
+
],
|
|
24
|
+
"license": "MIT",
|
|
25
|
+
"private": false
|
|
26
|
+
}
|