UNPKG

@interactive-video-labs/core

Version:
50 lines 1.27 kB
{ "name": "@interactive-video-labs/core", "version": "0.1.3", "description": "Framework-agnostic interactive video engine core", "main": "dist/index.cjs", "module": "dist/index.mjs", "types": "dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.cjs" } }, "files": [ "dist" ], "keywords": [ "interactive-video", "video-engine", "typescript", "framework-agnostic", "education", "state-machine" ], "author": "Taj", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/interactive-video-labs/interactive-video-core.git" }, "homepage": "https://github.com/interactive-video-labs/interactive-video-core#readme", "bugs": { "url": "https://github.com/interactive-video-labs/interactive-video-core/issues" }, "devDependencies": { "http-server": "^14.1.1", "jsdom": "^26.1.0", "tsup": "^8.0.0", "typescript": "^5.4.5", "vitest": "^1.5.0" }, "scripts": { "build": "tsup src/index.ts --format esm,cjs --dts", "dev": "tsup src/index.ts --watch --format esm,cjs", "test": "vitest run", "clean": "rm -rf dist", "serve": "http-server ." } }