UNPKG

chrome-filmstrip

Version:

Generate a combined filmstrip video from multiple Chrome performance profiles

65 lines 1.46 kB
{ "name": "chrome-filmstrip", "version": "0.6.0", "description": "Generate a combined filmstrip video from multiple Chrome performance profiles", "keywords": [ "chrome", "performance", "filmstrip", "ffmpeg", "lab", "communication" ], "license": "MIT", "author": "Brad Frost <code@bradfrost.me>", "repository": { "type": "git", "url": "git+https://github.com/bradfrosty/chrome-filmstrip.git" }, "bugs": { "url": "https://github.com/bradfrosty/chrome-filmstrip/issues" }, "homepage": "https://github.com/bradfrosty/chrome-filmstrip/tree/main/#readme", "type": "module", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "bin": { "chrome-filmstrip": "bin.js" }, "files": [ "bin.js", "dist", "static" ], "dependencies": { "@ffmpeg/core": "^0.11.0", "@ffmpeg/ffmpeg": "^0.11.0", "ora": "^6.1.2", "yargs": "^17.5.1" }, "devDependencies": { "@changesets/cli": "^2.24.3", "@types/node": "^16", "dprint": "^0.30.3", "tsup": "^6.2.2", "type-fest": "^2.18.0", "typescript": "^4.7.4" }, "engines": { "node": "^16" }, "publishConfig": { "access": "public" }, "scripts": { "build": "tsup", "dev": "tsup --watch", "format": "dprint fmt", "start": "./bin.js", "prepublish": "pnpm build --minify" } }