2020-11-06 09:06:25 +05:30
|
|
|
{
|
2020-11-11 14:50:57 +05:30
|
|
|
"name": "piped",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
2021-12-28 20:09:20 +05:30
|
|
|
"serve": "vite",
|
|
|
|
"build": "vite build",
|
2022-01-01 20:12:20 +05:30
|
|
|
"preview": "vite preview",
|
2022-01-01 20:23:55 +05:30
|
|
|
"lint": "eslint --fix --color --ignore-path .gitignore --ext .js,.vue ."
|
2020-11-06 09:06:25 +05:30
|
|
|
},
|
2020-11-11 14:50:57 +05:30
|
|
|
"dependencies": {
|
2021-08-05 09:38:08 +05:30
|
|
|
"@fortawesome/fontawesome-svg-core": "^1.2.36",
|
2021-08-05 09:51:01 +05:30
|
|
|
"@fortawesome/free-brands-svg-icons": "^5.15.4",
|
2021-08-05 09:38:50 +05:30
|
|
|
"@fortawesome/free-solid-svg-icons": "^5.15.4",
|
2021-10-19 09:38:36 +05:30
|
|
|
"@fortawesome/vue-fontawesome": "^3.0.0-5",
|
2021-12-29 06:03:15 +05:30
|
|
|
"buffer": "^6.0.3",
|
2022-01-27 09:36:31 +05:30
|
|
|
"dompurify": "^2.3.5",
|
2021-06-14 12:55:00 +05:30
|
|
|
"hotkeys-js": "^3.8.7",
|
2021-10-25 09:41:58 +05:30
|
|
|
"javascript-time-ago": "^2.3.10",
|
2021-12-21 09:39:05 +05:30
|
|
|
"mux.js": "^6.0.1",
|
2022-01-10 09:42:14 +05:30
|
|
|
"shaka-player": "3.3.0",
|
2021-12-29 06:03:15 +05:30
|
|
|
"stream": "^0.0.2",
|
2022-01-24 09:37:12 +05:30
|
|
|
"vue": "^3.2.29",
|
2022-01-25 09:37:28 +05:30
|
|
|
"vue-i18n": "^9.2.0-beta.29",
|
2021-10-15 09:39:07 +05:30
|
|
|
"vue-router": "^4.0.12",
|
2021-02-24 15:14:33 +05:30
|
|
|
"xml-js": "^1.6.11"
|
2020-11-06 09:06:25 +05:30
|
|
|
},
|
2020-11-11 14:50:57 +05:30
|
|
|
"devDependencies": {
|
2021-12-28 20:09:20 +05:30
|
|
|
"@intlify/vite-plugin-vue-i18n": "^3.2.1",
|
2022-01-13 15:27:55 +05:30
|
|
|
"@vitejs/plugin-legacy": "^1.6.4",
|
2022-01-24 09:36:58 +05:30
|
|
|
"@vitejs/plugin-vue": "^2.1.0",
|
2022-01-24 09:44:41 +05:30
|
|
|
"@vue/compiler-sfc": "3.2.29",
|
2020-11-11 14:50:57 +05:30
|
|
|
"babel-eslint": "^10.1.0",
|
2021-08-02 09:44:47 +05:30
|
|
|
"eslint": "^7.32.0",
|
2022-01-01 20:12:20 +05:30
|
|
|
"eslint-config-prettier": "^8.3.0",
|
2021-10-09 00:22:51 +05:30
|
|
|
"eslint-plugin-prettier": "^4.0.0",
|
2022-01-13 10:42:06 +05:30
|
|
|
"eslint-plugin-vue": "^8.3.0",
|
2021-12-28 20:09:20 +05:30
|
|
|
"prettier": "^2.5.1",
|
2022-01-19 09:36:57 +05:30
|
|
|
"vite": "^2.7.13",
|
2022-01-01 20:12:20 +05:30
|
|
|
"vite-plugin-eslint": "^1.3.0",
|
2022-01-13 03:55:25 +05:30
|
|
|
"vite-plugin-pwa": "^0.11.13",
|
2022-01-18 09:36:42 +05:30
|
|
|
"vite-plugin-windicss": "^1.6.3"
|
2020-11-11 14:50:57 +05:30
|
|
|
},
|
|
|
|
"eslintConfig": {
|
|
|
|
"root": true,
|
|
|
|
"env": {
|
|
|
|
"node": true
|
|
|
|
},
|
|
|
|
"extends": [
|
|
|
|
"plugin:vue/vue3-essential",
|
2021-10-09 00:22:51 +05:30
|
|
|
"plugin:prettier/recommended",
|
2020-11-11 14:50:57 +05:30
|
|
|
"eslint:recommended"
|
|
|
|
],
|
|
|
|
"parserOptions": {
|
|
|
|
"parser": "babel-eslint"
|
|
|
|
},
|
|
|
|
"rules": {}
|
|
|
|
},
|
|
|
|
"browserslist": [
|
2021-06-14 18:15:04 +05:30
|
|
|
"last 1 chrome version",
|
|
|
|
"last 1 firefox version"
|
2020-11-11 14:50:57 +05:30
|
|
|
]
|
2020-11-15 16:57:44 +05:30
|
|
|
}
|