konowebcodecs/packages/ffmpeg-mt/package.json
2022-09-23 18:16:34 +08:00

57 lines
1.5 KiB
JSON

{
"name": "@ffmpeg/ffmpeg-mt",
"version": "0.11.5",
"description": "FFmpeg WebAssembly version w/ multi-thread",
"main": "./dist/umd/ffmpeg.js",
"types": "./types/ffmpeg.d.ts",
"exports": {
".": {
"types": "./types/ffmpeg.d.ts",
"import": "./dist/esm/ffmpeg.js",
"require": "./dist/umd/ffmpeg.js"
}
},
"scripts": {
"lint": "eslint tests types",
"test": "npm run test:browser && npm run test:node",
"test:node": "mocha --exit --bail --require tests/test-helper.js tests/ffmpeg.test.js",
"test:browser": "mocha-headless-chrome -a allow-file-access-from-files -a enable-features=SharedArrayBuffer -f tests/ffmpeg.test.html"
},
"files": [
"dist",
"types/ffmpeg.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ffmpegwasm/ffmpeg.wasm.git"
},
"keywords": [
"ffmpeg",
"WebAssembly",
"video",
"audio",
"transcode"
],
"author": "Jerome Wu <jeromewus@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ffmpegwasm/ffmpeg.wasm/issues"
},
"engines": {
"node": ">=16.6.0"
},
"homepage": "https://github.com/ffmpegwasm/ffmpeg.wasm#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"chai": "^4.3.6",
"eslint": "^8.23.1",
"mocha": "^10.0.0",
"mocha-headless-chrome": "^4.0.0",
"typescript": "^4.8.3"
}
}