Files
v10/packages/spf/package.json
T
github-actions[bot]GitHubgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
ba5a72fb12 chore: release main (#947)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-03-16 07:25:02 +11:00

69 lines
1.7 KiB
JSON

{
"name": "@videojs/spf",
"type": "module",
"version": "10.0.0-beta.6",
"description": "Stream Processing Framework for Video.js 10",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/videojs/v10",
"directory": "packages/spf"
},
"keywords": [
"video",
"hls",
"streaming",
"spf",
"videojs"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"development": "./dist/index.js",
"default": "./dist/index.js"
},
"./dom": {
"types": "./dist/dom/index.d.ts",
"development": "./dist/dom/index.js",
"default": "./dist/dom/index.js"
},
"./playback-engine": {
"types": "./dist/dom/playback-engine/index.d.ts",
"development": "./dist/dom/playback-engine/index.js",
"default": "./dist/dom/playback-engine/index.js"
}
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc --build && tsdown",
"build:watch": "tsdown --watch --silent",
"dev": "pnpm run build:watch",
"test": "vitest run",
"test:ci": "vitest run --project=core --project=dom --project=utils",
"test:watch": "vitest",
"clean": "rm -rf dist types",
"size": "node scripts/measure-size.js --playback-engine",
"size:all": "node scripts/measure-size.js --all"
},
"dependencies": {
"@videojs/utils": "workspace:*"
},
"devDependencies": {
"@vitest/browser": "^3.2.4",
"@vitest/coverage-v8": "^3.2.4",
"jsdom": "^26.1.0",
"playwright": "^1.58.1",
"tsdown": "^0.15.12",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"publishConfig": {
"access": "public"
}
}