HLS-over-IPFS-video-player/package.json
Joshua Seigler c853faf3ca fix: bugs
2021-11-29 23:57:53 -05:00

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"
}
}