mirror of
https://github.com/zoriya/v10.git
synced 2026-08-10 16:09:18 +00:00
42 lines
814 B
JSON
42 lines
814 B
JSON
{
|
|
"name": "@vjs-10/html-media-store",
|
|
"version": "0.1.0",
|
|
"description": "HTML/DOM-specific media store integration and components",
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.mjs",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"test": "echo \"No tests yet\"",
|
|
"clean": "rm -rf dist"
|
|
},
|
|
"keywords": [
|
|
"media",
|
|
"store",
|
|
"state",
|
|
"html",
|
|
"dom"
|
|
],
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"@vjs-10/media-store": "*",
|
|
"@vjs-10/html-media-elements": "*"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.9.2"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|