Files
v10/packages/utils/package.json
T
github-actions[bot]GitHubgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
8f20e3b7f3 chore: release main (#195)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-11-17 19:50:30 -06:00

48 lines
933 B
JSON

{
"name": "@videojs/utils",
"type": "module",
"version": "0.1.0-preview.9",
"description": "Utility functions and helpers for Video.js",
"license": "Apache-2.0",
"keywords": [
"media",
"playback",
"engine",
"hls",
"dash",
"streaming",
"utils",
"videojs"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./dom": {
"types": "./dist/dom.d.ts",
"default": "./dist/dom.js"
}
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"build:watch": "tsdown --watch --silent",
"dev": "pnpm run build:watch",
"test": "echo \"No tests yet\"",
"clean": "rm -rf dist"
},
"devDependencies": {
"tsdown": "^0.15.9",
"typescript": "^5.9.2"
},
"publishConfig": {
"access": "public"
}
}