2019-09-09 03:02:09 +00:00
|
|
|
{
|
|
|
|
"name": "jellyfin-roku",
|
2023-11-26 16:52:02 +00:00
|
|
|
"type": "module",
|
2024-11-10 01:24:00 +00:00
|
|
|
"version": "2.2.4",
|
2019-09-09 03:02:09 +00:00
|
|
|
"description": "Roku app for Jellyfin media server",
|
2023-04-22 13:03:44 +00:00
|
|
|
"dependencies": {
|
2023-05-30 18:26:40 +00:00
|
|
|
"@rokucommunity/bslib": "0.1.1",
|
2024-09-26 22:26:23 +00:00
|
|
|
"brighterscript-formatter": "1.7.5",
|
2023-10-28 15:48:36 +00:00
|
|
|
"log": "npm:roku-log@0.11.1"
|
2023-04-22 13:03:44 +00:00
|
|
|
},
|
2021-01-31 19:48:32 +00:00
|
|
|
"devDependencies": {
|
2024-09-27 13:56:02 +00:00
|
|
|
"@rokucommunity/bslint": "0.8.25",
|
2024-09-25 22:02:26 +00:00
|
|
|
"brighterscript": "0.67.7",
|
2024-08-30 21:29:41 +00:00
|
|
|
"brighterscript-jsdocs-plugin": "0.7.3",
|
2024-07-18 14:17:56 +00:00
|
|
|
"clean-jsdoc-theme": "4.3.0",
|
2024-05-02 04:07:23 +00:00
|
|
|
"jsdoc": "4.0.3",
|
2023-04-22 13:03:44 +00:00
|
|
|
"jshint": "2.13.6",
|
2024-09-06 05:04:27 +00:00
|
|
|
"markdownlint-cli2": "0.14.0",
|
2024-07-10 20:08:40 +00:00
|
|
|
"rimraf": "6.0.1",
|
2024-07-19 19:56:18 +00:00
|
|
|
"roku-deploy": "3.12.1",
|
2023-04-26 14:08:28 +00:00
|
|
|
"roku-log-bsc-plugin": "0.8.1",
|
2024-10-03 21:17:50 +00:00
|
|
|
"rooibos-roku": "5.14.0",
|
2024-09-27 13:56:10 +00:00
|
|
|
"ropm": "0.10.26",
|
2024-02-11 22:29:51 +00:00
|
|
|
"spellchecker-cli": "6.2.0",
|
2023-04-22 13:03:44 +00:00
|
|
|
"undent": "0.1.0"
|
2019-09-09 03:02:09 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
2023-05-03 21:21:04 +00:00
|
|
|
"build": "npx rimraf build/ out/ && npx bsc --project bsconfig.json",
|
|
|
|
"build-prod": "npx rimraf build/ out/ && npx bsc --project bsconfig-prod.json",
|
|
|
|
"build-tests": "npx rimraf build/ out/ && npx bsc --project bsconfig-tests.json",
|
|
|
|
"build-tdd": "npx rimraf build/ out/ && npx bsc --project bsconfig-tdd.json",
|
2023-04-22 13:03:44 +00:00
|
|
|
"check-formatting": "npx bsfmt --check",
|
2023-10-27 02:19:51 +00:00
|
|
|
"docs": "npx rimraf docs/api && jsdoc -c jsdoc.json -d docs/api --readme docs/api-docs-readme.md",
|
2023-04-22 13:03:44 +00:00
|
|
|
"format": "npx bsfmt --write",
|
2023-10-11 07:41:30 +00:00
|
|
|
"lint": "npm run check-formatting && npm run lint-bs && npm run validate && npm run lint-json && npm run lint-markdown && npm run lint-spelling",
|
|
|
|
"lint-bs": "bslint",
|
2023-10-06 04:02:32 +00:00
|
|
|
"lint-json": "jshint --extra-ext .json --verbose --exclude node_modules,scripts,docs ./",
|
2023-02-26 18:52:06 +00:00
|
|
|
"lint-markdown": "markdownlint-cli2 \"**/*.md\" \"#node_modules\"",
|
2023-02-26 19:09:28 +00:00
|
|
|
"lint-spelling": "spellchecker -d dictionary.txt --files \"**/*.md\" \"**/.*/**/*.md\" \"!node_modules/**/*.md\"",
|
2023-05-30 18:24:49 +00:00
|
|
|
"postinstall": "npm run ropm",
|
2023-11-26 16:52:02 +00:00
|
|
|
"ropm": "ropm copy && node scripts/ropm-hook.cjs",
|
2023-04-22 13:03:44 +00:00
|
|
|
"validate": "npx bsc --copy-to-staging=false --create-package=false"
|
2019-09-09 03:02:09 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2023-04-22 13:03:44 +00:00
|
|
|
"url": "https://github.com/jellyfin/jellyfin-roku.git"
|
2019-09-09 03:02:09 +00:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"jellyfin",
|
|
|
|
"roku"
|
|
|
|
],
|
|
|
|
"author": "jellyfin",
|
2020-02-24 17:45:21 +00:00
|
|
|
"license": "GPL-2.0",
|
2019-09-09 03:02:09 +00:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/jellyfin/jellyfin-roku/issues"
|
|
|
|
},
|
2023-05-03 21:21:04 +00:00
|
|
|
"homepage": "https://github.com/jellyfin/jellyfin-roku"
|
2024-02-20 02:58:11 +00:00
|
|
|
}
|