av-kit
Version:
AVFoundation Recorder kit for Node.js
41 lines • 963 B
JSON
{
"name": "av-kit",
"version": "0.1.2",
"author": "yiork",
"license": "MIT",
"description": "AVFoundation Recorder kit for Node.js",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"keywords": [
"avfoundation",
"screen-recorder",
"camera",
"macos",
"av-kit",
"node",
"electron",
"typescript"
],
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0"
},
"devDependencies": {
"@changesets/cli": "^2.28.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.10",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"ts-jest": "^29.2.6",
"tsup": "^8.4.0",
"typescript": "^5.8.2"
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"lint": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"release": "pnpm run build && pnpm run test && changeset publish"
}
}