mirror of
https://github.com/seigler/HLS-over-IPFS-video-player
synced 2025-07-26 01:06:15 +00:00
31 lines
995 B
JSON
31 lines
995 B
JSON
{
|
|
"name": "example-browser-video-streaming",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "IPFS browser video streaming example",
|
|
"keywords": [],
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"clean": "rimraf ./dist ./.cache ./.parcel-cache",
|
|
"build": "parcel build index.html --no-scope-hoist --public-url ./ && echo ipfsvideo.cc > ./dist/CNAME",
|
|
"serve": "parcel serve index.html --open -p 8888",
|
|
"start": "npm run serve",
|
|
"test": "npm run build && playwright test tests --browser=firefox --retries=3",
|
|
"deploy": "git-directory-deploy --directory dist/"
|
|
},
|
|
"browserslist": "last 1 Chrome version",
|
|
"dependencies": {
|
|
"hls.js": "^0.14.17",
|
|
"hlsjs-ipfs-loader": "^0.3.0",
|
|
"ipfs-core": "^0.11.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.14.8",
|
|
"@playwright/test": "^1.12.3",
|
|
"git-directory-deploy": "^1.5.1",
|
|
"parcel": "latest",
|
|
"playwright": "^1.12.3",
|
|
"rimraf": "^3.0.2",
|
|
"test-util-ipfs-example": "^1.0.2"
|
|
}
|
|
}
|