57 lines
1.4 KiB
JSON
57 lines
1.4 KiB
JSON
{
|
|
"name": "@ffmpeg/ffmpeg",
|
|
"version": "0.11.5",
|
|
"description": "FFmpeg WebAssembly version",
|
|
"main": "./dist/cjs/ffmpeg.js",
|
|
"types": "./types/ffmpeg.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./types/ffmpeg.d.ts",
|
|
"import": "./dist/esm/ffmpeg.js",
|
|
"require": "./dist/cjs/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 -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"
|
|
}
|
|
}
|