Files
avprobe-wasm/package.json
2026-02-18 20:40:23 +01:00

39 lines
869 B
JSON

{
"name": "ffprobe-wasm",
"version": "0.3.0",
"description": "ffprobe-like for browser and node, powered by WebAssembly",
"repository": {
"type": "git",
"url": "https://github.com/tfoxy/ffprobe-wasm"
},
"bugs": {
"url": "https://github.com/tfoxy/ffprobe-wasm/issues"
},
"keywords": [
"ffprobe",
"WebAssembly",
"ffmpeg",
"video"
],
"author": "Tomás Fox <tomas.c.fox@gmail.com>",
"license": "MIT",
"exports": {
"node": "./node.mjs",
"types": "./ffprobe-worker.d.mts",
"default": "./browser.mjs"
},
"main": "./node.mjs",
"types": "./ffprobe-worker.d.mts",
"browser": "./browser.mjs",
"scripts": {
"build": "npm run tsc && npm run vite",
"tsc": "tsc",
"vite": "vite build"
},
"devDependencies": {
"@types/node": "^25.2.3",
"typescript": "^5.9.3",
"vite": "^7.3.1"
}
}