react-tuby
Version:
A React video player library with YouTube-like UI
78 lines (77 loc) • 1.73 kB
JSON
{
"version": "0.1.24",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src",
"css"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build && npm run style:build",
"style:dev": "sass scss/main.scss css/main.css --watch --no-source-map",
"style:build": "sass scss/main.scss css/main.css --style=compressed --no-source-map",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why"
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": false,
"trailingComma": "es5"
},
"name": "react-tuby",
"description": "A React video player library with YouTube-like UI",
"author": "napthedev",
"module": "dist/react-tuby.esm.js",
"repository": {
"type": "git",
"url": "https://github.com/napthedev/react-tuby.git"
},
"keywords": [
"react",
"tuby",
"tube",
"youtube",
"react-tuby"
],
"size-limit": [
{
"path": "dist/react-tuby.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/react-tuby.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^7.0.8",
"@types/react": "^17.0.40",
"@types/react-dom": "^17.0.13",
"husky": "^7.0.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sass": "^1.49.9",
"size-limit": "^7.0.8",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.6.2"
}
}