diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c3fb11f --- /dev/null +++ b/.gitignore @@ -0,0 +1,33 @@ +# Dependencies +node_modules/ + +# Build outputs +dist/ +dist-ssr/ +*.local + +# TypeScript cache +*.tsbuildinfo + +# Environment variables +.env +.env.* +!.env.example + +# Logs +logs/ +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Editor directories and files +.vscode/ +.idea/ +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? +.DS_Store +Thumbs.db diff --git a/package.json b/package.json new file mode 100644 index 0000000..c53b1b3 --- /dev/null +++ b/package.json @@ -0,0 +1,17 @@ +{ + "name": "vp", + "version": "0.0.1", + "description": "VideoPlayer (vp) is a private project at db company to handle hls streams in a modular beautiful html5 video player.", + "keywords": [], + "repository": { + "type": "git", + "url": "VideoPlayer" + }, + "license": "MIT", + "author": "db", + "type": "commonjs", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + } +}