prism-media
Advanced tools
Comparing version 1.3.1 to 2.0.0-alpha.0
112
package.json
{ | ||
"name": "prism-media", | ||
"version": "1.3.1", | ||
"version": "2.0.0-alpha.0", | ||
"description": "Easy-to-use stream-based media transcoding", | ||
"main": "src/index.js", | ||
"types": "typings/index.d.ts", | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"scripts": { | ||
"lint": "eslint src", | ||
"test": "npm run lint && jest && npm run docs", | ||
"docs": "docma" | ||
"test": "jest test/", | ||
"lint": "eslint src --ext .ts", | ||
"lint:fix": "eslint src --ext .ts --fix", | ||
"prettier": "prettier --write **/*.{ts,js,json,yml,yaml}", | ||
"build": "tsc", | ||
"build:check": "tsc --noEmit --incremental false" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/hydrabolt/prism-media.git" | ||
"url": "git+https://github.com/amishshah/prism-media.git" | ||
}, | ||
@@ -28,37 +31,78 @@ "keywords": [ | ||
"bugs": { | ||
"url": "https://github.com/hydrabolt/prism-media/issues" | ||
"url": "https://github.com/amishshah/prism-media/issues" | ||
}, | ||
"homepage": "https://github.com/hydrabolt/prism-media#readme", | ||
"homepage": "https://github.com/amishshah/prism-media#readme", | ||
"devDependencies": { | ||
"docma": "^3.2.2", | ||
"eslint": "^7.14.0", | ||
"jest": "^26.6.3" | ||
"@commitlint/cli": "^12.1.4", | ||
"@commitlint/config-angular": "^12.1.4", | ||
"@types/jest": "^26.0.23", | ||
"@types/node": "^15.12.2", | ||
"@typescript-eslint/eslint-plugin": "^4.26.1", | ||
"@typescript-eslint/parser": "^4.26.1", | ||
"eslint": "^7.28.0", | ||
"eslint-config-marine": "^9.0.6", | ||
"eslint-config-prettier": "^8.3.0", | ||
"eslint-plugin-prettier": "^3.4.0", | ||
"husky": "^5.1.3", | ||
"jest": "^27.0.4", | ||
"lint-staged": "^11.0.0", | ||
"prettier": "^2.3.1", | ||
"ts-jest": "^27.0.3", | ||
"typescript": "^4.2.3" | ||
}, | ||
"files": [ | ||
"dist/" | ||
], | ||
"husky": { | ||
"hooks": { | ||
"pre-commit": "lint-staged", | ||
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS" | ||
} | ||
}, | ||
"jest": { | ||
"testURL": "http://localhost/" | ||
"preset": "ts-jest", | ||
"testEnvironment": "node" | ||
}, | ||
"peerDependencies": { | ||
"@discordjs/opus": "^0.5.0", | ||
"ffmpeg-static": "^4.2.7 || ^3.0.0 || ^2.4.0", | ||
"node-opus": "^0.3.3", | ||
"opusscript": "^0.0.8" | ||
"lint-staged": { | ||
"*.{mjs,js,ts}": [ | ||
"eslint --ext .ts --fix" | ||
], | ||
"*.{json,yml,yaml}": [ | ||
"prettier --write" | ||
] | ||
}, | ||
"peerDependenciesMeta": { | ||
"@discordjs/opus": { | ||
"optional": true | ||
}, | ||
"node-opus": { | ||
"optional": true | ||
}, | ||
"opusscript": { | ||
"optional": true | ||
}, | ||
"ffmpeg-static": { | ||
"optional": true | ||
"commitlint": { | ||
"extends": [ | ||
"@commitlint/config-angular" | ||
], | ||
"rules": { | ||
"type-enum": [ | ||
2, | ||
"always", | ||
[ | ||
"chore", | ||
"build", | ||
"ci", | ||
"docs", | ||
"feat", | ||
"fix", | ||
"perf", | ||
"refactor", | ||
"revert", | ||
"style", | ||
"test", | ||
"types", | ||
"wip" | ||
] | ||
], | ||
"scope-case": [ | ||
1, | ||
"always", | ||
"pascal-case" | ||
] | ||
} | ||
}, | ||
"files": [ | ||
"src/", | ||
"typings/" | ||
] | ||
"dependencies": { | ||
"duplex-child-process": "^1.0.1" | ||
} | ||
} |
@@ -48,2 +48,4 @@ [![Logo](https://hydrabolt.me/assets/prism-media-logo.svg)](https://hydrabolt.me/prism-media/) | ||
- `ffmpeg` from a [normal installation](https://www.ffmpeg.org/download.html) | ||
- CRC | ||
- [`node-crc`](https://github.com/magiclen/node-crc) | ||
@@ -50,0 +52,0 @@ ## Useful Links |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Shell access
Supply chain riskThis module accesses the system shell. Accessing the system shell increases the risk of executing arbitrary code.
Found 1 instance in 1 package
Dynamic require
Supply chain riskDynamic require can indicate the package is performing dangerous or unsafe dynamic code execution.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Shell access
Supply chain riskThis module accesses the system shell. Accessing the system shell increases the risk of executing arbitrary code.
Found 1 instance in 1 package
Dynamic require
Supply chain riskDynamic require can indicate the package is performing dangerous or unsafe dynamic code execution.
Found 1 instance in 1 package
158058
1
76
1392
71
16
1
2
+ Addedduplex-child-process@^1.0.1
+ Addedduplex-child-process@1.0.1(transitive)
- Removed@derhuerst/http-basic@8.2.4(transitive)
- Removed@discordjs/node-pre-gyp@0.4.5(transitive)
- Removed@discordjs/opus@0.5.3(transitive)
- Removed@types/node@10.17.60(transitive)
- Removedabbrev@1.1.1(transitive)
- Removedagent-base@6.0.2(transitive)
- Removedansi-regex@5.0.1(transitive)
- Removedaproba@2.0.0(transitive)
- Removedare-we-there-yet@2.0.0(transitive)
- Removedbalanced-match@1.0.2(transitive)
- Removedbindings@1.2.1(transitive)
- Removedbrace-expansion@1.1.11(transitive)
- Removedbuffer-from@1.1.2(transitive)
- Removedcaseless@0.12.0(transitive)
- Removedchownr@2.0.0(transitive)
- Removedcolor-support@1.1.3(transitive)
- Removedcommander@2.20.3(transitive)
- Removedconcat-map@0.0.1(transitive)
- Removedconcat-stream@2.0.0(transitive)
- Removedconsole-control-strings@1.1.0(transitive)
- Removeddebug@2.6.94.3.7(transitive)
- Removeddelegates@1.0.0(transitive)
- Removeddetect-libc@2.0.3(transitive)
- Removedemoji-regex@8.0.0(transitive)
- Removedenv-paths@2.2.1(transitive)
- Removedffmpeg-static@4.4.1(transitive)
- Removedfs-minipass@2.1.0(transitive)
- Removedfs.realpath@1.0.0(transitive)
- Removedgauge@3.0.2(transitive)
- Removedglob@7.2.3(transitive)
- Removedhas-unicode@2.0.1(transitive)
- Removedhttp-response-object@3.0.2(transitive)
- Removedhttps-proxy-agent@5.0.1(transitive)
- Removedinflight@1.0.6(transitive)
- Removedinherits@2.0.4(transitive)
- Removedis-fullwidth-code-point@3.0.0(transitive)
- Removedmake-dir@3.1.0(transitive)
- Removedminimatch@3.1.2(transitive)
- Removedminipass@3.3.65.0.0(transitive)
- Removedminizlib@2.1.2(transitive)
- Removedmkdirp@1.0.4(transitive)
- Removedms@2.0.02.1.3(transitive)
- Removednan@2.22.0(transitive)
- Removednode-addon-api@3.2.1(transitive)
- Removednode-fetch@2.7.0(transitive)
- Removednode-opus@0.3.3(transitive)
- Removednopt@5.0.0(transitive)
- Removednpmlog@5.0.1(transitive)
- Removedobject-assign@4.1.1(transitive)
- Removedogg-packet@1.0.1(transitive)
- Removedonce@1.4.0(transitive)
- Removedopusscript@0.0.8(transitive)
- Removedparse-cache-control@1.0.1(transitive)
- Removedpath-is-absolute@1.0.1(transitive)
- Removedprogress@2.0.3(transitive)
- Removedreadable-stream@3.6.2(transitive)
- Removedref@1.3.5(transitive)
- Removedref-struct@1.1.0(transitive)
- Removedrimraf@3.0.2(transitive)
- Removedsafe-buffer@5.2.1(transitive)
- Removedsemver@6.3.17.6.3(transitive)
- Removedset-blocking@2.0.0(transitive)
- Removedsignal-exit@3.0.7(transitive)
- Removedstring-width@4.2.3(transitive)
- Removedstring_decoder@1.3.0(transitive)
- Removedstrip-ansi@6.0.1(transitive)
- Removedtar@6.2.1(transitive)
- Removedtr46@0.0.3(transitive)
- Removedtypedarray@0.0.6(transitive)
- Removedutil-deprecate@1.0.2(transitive)
- Removedwebidl-conversions@3.0.1(transitive)
- Removedwhatwg-url@5.0.0(transitive)
- Removedwide-align@1.1.5(transitive)
- Removedwrappy@1.0.2(transitive)
- Removedyallist@4.0.0(transitive)