Files
v10/packages/html/package.json
T

56 lines
1.2 KiB
JSON

{
"name": "@videojs/html",
"type": "module",
"version": "0.1.0-alpha.1",
"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"
},
"./skins/frosted": {
"types": "./dist/skins/frosted.d.ts",
"default": "./dist/skins/frosted.js"
},
"./define/vjs-frosted-skin": {
"types": "./dist/define/vjs-frosted-skin.d.ts",
"default": "./dist/define/vjs-frosted-skin.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 types"
},
"dependencies": {
"@lit/reactive-element": "^2.1.2",
"@videojs/core": "workspace:*",
"@videojs/store": "workspace:*",
"@videojs/utils": "workspace:*"
},
"devDependencies": {
"tsdown": "^0.15.12",
"typescript": "^5.9.3"
},
"publishConfig": {
"access": "public"
}
}