@interactive-video-labs/react
Version:
Thin React wrapper for the @interactive-video-labs/core engine. Enables cue-based interactive video playback in React apps.
85 lines • 2.47 kB
JSON
{
"name": "@interactive-video-labs/react",
"version": "0.1.0",
"description": "Thin React wrapper for the @interactive-video-labs/core engine. Enables cue-based interactive video playback in React apps.",
"type": "module",
"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"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write --cache"
]
},
"files": [
"dist"
],
"keywords": [
"interactive-video",
"react",
"react-component",
"typescript",
"video-player",
"cue-points",
"interactive-learning",
"react-wrapper"
],
"author": "Taj",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/interactive-video-labs/interactive-video-react-wrapper.git"
},
"homepage": "https://github.com/interactive-video-labs/interactive-video-react-wrapper#readme",
"bugs": {
"url": "https://github.com/interactive-video-labs/interactive-video-react-wrapper/issues"
},
"peerDependencies": {
"@interactive-video-labs/core": "^0.1.2",
"react": ">=17.0.0 || >=18.0.0",
"react-dom": ">=17.0.0 || >=18.0.0"
},
"dependencies": {
"@vitejs/plugin-react": "^4.7.0",
"jsdom": "^26.1.0",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.0.0",
"@types/react": "^19.1.9",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"http-server": "^14.1.1",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"prettier": "^3.6.2",
"typescript-eslint": "^8.39.0"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"clean": "rm -rf dist",
"lint": "lint-staged",
"commitlint": "commitlint --edit",
"serve-examples": "pnpm build-examples && http-server examples -c-1",
"build-examples": "esbuild examples/index.tsx --bundle --outfile=examples/dist/index.js --jsx=automatic"
}
}