mirror of
https://github.com/zoriya/v10.git
synced 2026-08-05 05:37:21 +00:00
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
84 lines
1.8 KiB
JSON
84 lines
1.8 KiB
JSON
{
|
|
"name": "@videojs/utils",
|
|
"type": "module",
|
|
"version": "10.0.0-beta.4",
|
|
"description": "Utility functions and helpers for Video.js",
|
|
"license": "Apache-2.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/videojs/v10",
|
|
"directory": "packages/utils"
|
|
},
|
|
"sideEffects": false,
|
|
"exports": {
|
|
"./array": {
|
|
"types": "./dist/array.d.ts",
|
|
"default": "./dist/array.js"
|
|
},
|
|
"./dom": {
|
|
"types": "./dist/dom.d.ts",
|
|
"default": "./dist/dom.js"
|
|
},
|
|
"./events": {
|
|
"types": "./dist/events.d.ts",
|
|
"default": "./dist/events.js"
|
|
},
|
|
"./function": {
|
|
"types": "./dist/function.d.ts",
|
|
"default": "./dist/function.js"
|
|
},
|
|
"./object": {
|
|
"types": "./dist/object.d.ts",
|
|
"default": "./dist/object.js"
|
|
},
|
|
"./predicate": {
|
|
"types": "./dist/predicate.d.ts",
|
|
"default": "./dist/predicate.js"
|
|
},
|
|
"./string": {
|
|
"types": "./dist/string.d.ts",
|
|
"default": "./dist/string.js"
|
|
},
|
|
"./style": {
|
|
"types": "./dist/style.d.ts",
|
|
"default": "./dist/style.js"
|
|
},
|
|
"./time": {
|
|
"types": "./dist/time.d.ts",
|
|
"default": "./dist/time.js"
|
|
},
|
|
"./number": {
|
|
"types": "./dist/number.d.ts",
|
|
"default": "./dist/number.js"
|
|
},
|
|
"./types": {
|
|
"types": "./dist/types.d.ts",
|
|
"default": "./dist/types.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsdown",
|
|
"build:watch": "tsdown --watch ./src --no-clean",
|
|
"dev": "pnpm run build:watch",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"clean": "rm -rf dist types"
|
|
},
|
|
"devDependencies": {
|
|
"tsdown": "^0.20.3",
|
|
"typescript": "^5.9.3",
|
|
"vitest": "^3.2.4"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"keywords": [
|
|
"media",
|
|
"utils",
|
|
"videojs"
|
|
]
|
|
}
|