mirror of
https://github.com/zoriya/v10.git
synced 2026-08-05 21:57:29 +00:00
65 lines
1.4 KiB
JSON
65 lines
1.4 KiB
JSON
{
|
|
"name": "@videojs/html",
|
|
"type": "module",
|
|
"version": "0.1.0-preview.2",
|
|
"description": "HTML library for building media players",
|
|
"license": "Apache-2.0",
|
|
"keywords": [
|
|
"media",
|
|
"player",
|
|
"html",
|
|
"ui",
|
|
"components",
|
|
"videojs"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"./store": {
|
|
"types": "./dist/store.d.ts",
|
|
"default": "./dist/store.js"
|
|
},
|
|
"./icons": {
|
|
"types": "./dist/icons.d.ts",
|
|
"default": "./dist/icons.js"
|
|
},
|
|
"./skins/frosted": {
|
|
"types": "./dist/skins/frosted.d.ts",
|
|
"default": "./dist/skins/frosted.js"
|
|
},
|
|
"./skins/minimal": {
|
|
"types": "./dist/skins/minimal.d.ts",
|
|
"default": "./dist/skins/minimal.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"
|
|
},
|
|
"dependencies": {
|
|
"@floating-ui/dom": "^1.6.13",
|
|
"@open-wc/context-protocol": "^0.0.9",
|
|
"@videojs/core": "workspace:*",
|
|
"@videojs/icons": "workspace:*",
|
|
"@videojs/utils": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"tsdown": "^0.15.9",
|
|
"typescript": "^5.9.2"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|