UNPKG

timecode-converter

Version:

Modern TypeScript library for broadcast timecode conversions with full SMPTE drop-frame support

71 lines 1.88 kB
{ "name": "timecode-converter", "version": "2.0.0", "description": "Modern TypeScript library for broadcast timecode conversions with full SMPTE drop-frame support", "type": "module", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "require": "./dist/index.js", "import": "./dist/index.mjs" } }, "files": [ "dist", "README.md", "docs/MIGRATION.md" ], "engines": { "node": ">=14.0.0" }, "keywords": [ "timecode", "broadcast", "video", "conversion", "SMPTE", "drop-frame", "dropframe", "fps", "frames", "typescript", "29.97", "59.94" ], "author": "Jordan Burke <jordan.burke@gmail.com>", "license": "ISC", "repository": { "type": "git", "url": "git+https://github.com/isapien/timecode-converter.git" }, "bugs": { "url": "https://github.com/isapien/timecode-converter/issues" }, "homepage": "https://github.com/isapien/timecode-converter#readme", "devDependencies": { "@types/node": "^20.19.8", "@vitest/coverage-v8": "^3.2.4", "prettier": "^3.6.2", "smpte-timecode": "^1.3.6", "tsup": "^8.5.0", "tsx": "^4.20.3", "typescript": "^5.8.3", "vitest": "^3.2.4" }, "scripts": { "dev": "tsup --watch", "build": "tsup", "test": "vitest", "test:run": "vitest run", "test:coverage": "vitest run --coverage", "typecheck": "tsc --noEmit", "format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\"", "format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,md}\"", "pre-publish": "pnpm run format:check && pnpm run typecheck && pnpm run test:run && pnpm run build", "publish:public": "pnpm publish --access public", "publish:dry:run": "pnpm publish --dry-run" } }