UNPKG

@liveryvideo/player

Version:

Livery video player for use in web browsers.

83 lines (82 loc) 2.33 kB
{ "name": "@liveryvideo/player", "type": "module", "version": "7.17.0", "publishConfig": { "access": "public" }, "description": "Livery video player for use in web browsers.", "author": "Livery Video", "license": "MIT", "homepage": "https://www.liveryvideo.com/", "repository": "github:liveryvideo/player-web", "exports": { "import": "./dist/index.js", "require": "./dist/index.umd.js" }, "main": "dist/index.umd.js", "module": "dist/index.js", "types": "dist/index.d.ts", "files": [ "CHANGELOG.md", "dist" ], "scripts": { "build:lib:doc": "typedoc && mv dist/doc/* dist/ && rm -rf dist/doc", "build:lib": "vite build -m lib:bundler && vite build -m lib:browser --emptyOutDir false && npm run build:lib:doc", "build": "vite build", "dev": "vite", "lint": "biome check && eslint && tsc", "lint:fix": "eslint --fix && biome check --fix", "prepare": "husky", "prepublishOnly": "npm run build:lib", "preview": "vite preview", "test:watch": "vitest", "test": "vitest run" }, "dependencies": { "@liveryvideo/interactive-bridge": "^1.14.2", "lit": "^3.3.0", "lodash-es": "^4.17.21", "reflect-metadata": "^0.2.2", "sprintf-js": "^1.1.3" }, "devDependencies": { "@biomejs/biome": "^1.9.4", "@commitlint/cli": "^19.8.0", "@commitlint/config-conventional": "^19.8.0", "@liveryvideo/biome-lit": "^1.5.1", "@semantic-release/changelog": "^6.0.3", "@semantic-release/git": "^10.0.1", "@sentry/browser": "^9.13.0", "@sentry/core": "^9.13.0", "@types/echarts": "^5.0.0", "@types/lodash-es": "^4.17.12", "@types/sprintf-js": "^1.1.4", "browserslist-to-esbuild": "^2.1.1", "eslint": "^9.24.0", "git-branch-is": "^4.0.0", "happy-dom": "^17.4.4", "husky": "^9.1.7", "lint-staged": "^15.5.1", "semantic-release": "^24.2.3", "typedoc": "^0.28.2", "typedoc-plugin-markdown": "^4.6.2", "typedoc-plugin-no-inherit": "^1.6.1", "typescript": "^5.8.3", "vite": "^6.3.2", "vite-plugin-dts": "^4.4.0", "vitest": "^3.1.1" }, "commitlint": { "extends": [ "@commitlint/config-conventional" ] }, "lint-staged": { "*": [ "biome check --fix --no-errors-on-unmatched", "eslint --fix" ] } }