mirror of
https://github.com/zoriya/v10.git
synced 2026-08-05 21:57:29 +00:00
50 lines
1.0 KiB
JSON
50 lines
1.0 KiB
JSON
{
|
|
"name": "@vjs-10/react-media-elements",
|
|
"type": "module",
|
|
"version": "0.1.0",
|
|
"description": "React media element components, hooks, and utilities",
|
|
"license": "Apache-2.0",
|
|
"keywords": [
|
|
"media",
|
|
"react",
|
|
"hooks",
|
|
"video",
|
|
"audio"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.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"
|
|
},
|
|
"peerDependencies": {
|
|
"react": ">=16.8.0"
|
|
},
|
|
"dependencies": {
|
|
"@vjs-10/media": "workspace:*",
|
|
"@vjs-10/playback-engine": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.0.0",
|
|
"react": "^18.0.0",
|
|
"tsdown": "^0.15.4",
|
|
"typescript": "^5.9.2"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|