UNPKG

vidclip

Version:

A highly customizable, lightweight screen recorder.

55 lines (54 loc) 1.54 kB
{ "name": "vidclip", "version": "5.1.0", "description": "A highly customizable, lightweight screen recorder.", "main": "lib/index.js", "types": "lib/index.d.ts", "module": "lib/index.mjs", "scripts": { "test": "node lib/index.mjs && jest", "coverage": "npm run build && npx jest --coverage", "build:esm": "tsc -b tsconfig.esm.json && node scripts/esm-post-process.mjs", "build:cjs": "tsc -b tsconfig.cjs.json", "build": "npm run build:esm && npm run build:cjs", "format": "prettier --write src/*.ts", "docs:dev": "vitepress dev docs", "docs:build": "vitepress build docs", "docs:preview": "vitepress preview docs" }, "type": "module", "author": "Terry Kim", "license": "MIT", "keywords": [ "screen", "recorder", "video", "clip", "record", "screen-recorder", "video-clip", "screen-record", "video-record" ], "dependencies": { "@ffmpeg-installer/ffmpeg": "^1.1.0" }, "repository": { "type": "git", "url": "https://github.com/realyoterry/vidclip.git" }, "devDependencies": { "glob": "^11.0.1", "jest": "^29.7.0", "prettier": "^3.5.1", "typescript": "^5.7.3", "vitepress": "^1.6.3" }, "exports": { ".": { "require": "./lib/index.js", "import": "./lib/index.mjs", "types": "./lib/index.d.ts" } } }