@liveryvideo/player
Version:
Livery video player for use in web browsers.
84 lines (83 loc) • 2.36 kB
JSON
{
"name": "@liveryvideo/player",
"type": "module",
"version": "7.15.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.2.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.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@liveryvideo/biome-lit": "^1.4.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@sentry/browser": "^8.47.0",
"@sentry/types": "^8.47.0",
"@types/dom-webcodecs": "0.1.11",
"@types/echarts": "^4.9.15",
"@types/lodash-es": "^4.17.12",
"@types/sprintf-js": "^1.1.4",
"browserslist-to-esbuild": "^2.1.1",
"eslint": "^9.17.0",
"git-branch-is": "^4.0.0",
"happy-dom": "^15.7.4",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"semantic-release": "^24.2.0",
"typedoc": "0.25.13",
"typedoc-plugin-markdown": "4.0.1",
"typedoc-plugin-no-inherit": "1.4.0",
"typescript": "5.4.5",
"vite": "^5.4.11",
"vite-plugin-dts": "^4.4.0",
"vitest": "^2.1.8"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*": [
"biome check --fix --no-errors-on-unmatched",
"eslint --fix"
]
}
}