mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 21:03:19 +03:00
27a4c8c895
* Experiment with javascript bundling * Experiment with snowpack. Making progress * Success! Uses local js modules and assets and no cdns * Missing local css
40 lines
1 KiB
JSON
40 lines
1 KiB
JSON
{
|
|
"name": "owncast-dependencies",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"dependencies": {
|
|
"@joeattardi/emoji-button": "^4.2.0",
|
|
"@justinribeiro/lite-youtube": "^0.9.0",
|
|
"@videojs/http-streaming": "^2.2.0",
|
|
"@videojs/themes": "^1.0.0",
|
|
"htm": "^3.0.4",
|
|
"preact": "^10.5.3",
|
|
"showdown": "^1.9.1",
|
|
"tailwindcss": "^1.8.10",
|
|
"video.js": "^7.9.6"
|
|
},
|
|
"devDependencies": {
|
|
"snowpack": "^2.12.1"
|
|
},
|
|
"snowpack": {
|
|
"install": [
|
|
"video.js/dist/video.min.js",
|
|
"@videojs/themes/fantasy/*",
|
|
"@videojs/http-streaming/dist/videojs-http-streaming.min.js",
|
|
"video.js/dist/video-js.min.css",
|
|
"@joeattardi/emoji-button",
|
|
"@justinribeiro/lite-youtube",
|
|
"htm",
|
|
"preact",
|
|
"showdown",
|
|
"tailwindcss/dist/tailwind.min.css"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"build": "npm install && npx snowpack install && cp -R web_modules ../../webroot/js"
|
|
},
|
|
"author": "",
|
|
"license": "ISC"
|
|
}
|