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": {
|
2022-02-08 09:37:59 +05:30
|
|
|
"@fortawesome/fontawesome-svg-core": "^1.3.0",
|
2022-03-16 09:37:51 +05:30
|
|
|
"@fortawesome/free-brands-svg-icons": "^6.1.0",
|
2022-02-08 16:26:46 +05:30
|
|
|
"@fortawesome/free-solid-svg-icons": "^6.0.0",
|
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-02-17 09:38:18 +05:30
|
|
|
"dompurify": "^2.3.6",
|
2021-06-14 12:55:00 +05:30
|
|
|
"hotkeys-js": "^3.8.7",
|
2022-02-11 09:37:58 +05:30
|
|
|
"javascript-time-ago": "^2.3.13",
|
2021-12-21 09:39:05 +05:30
|
|
|
"mux.js": "^6.0.1",
|
2022-02-18 09:38:56 +05:30
|
|
|
"shaka-player": "3.3.2",
|
2021-12-29 06:03:15 +05:30
|
|
|
"stream": "^0.0.2",
|
2022-02-14 09:38:55 +05:30
|
|
|
"vue": "^3.2.31",
|
2022-03-14 20:30:07 +05:30
|
|
|
"vue-i18n": "^9.2.0-beta.32",
|
2022-03-11 09:36:34 +05:30
|
|
|
"vue-router": "^4.0.14",
|
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": {
|
2022-02-28 09:40:27 +05:30
|
|
|
"@intlify/vite-plugin-vue-i18n": "^3.3.1",
|
2022-02-14 09:38:26 +05:30
|
|
|
"@vitejs/plugin-legacy": "^1.7.1",
|
2022-03-01 09:40:16 +05:30
|
|
|
"@vitejs/plugin-vue": "^2.2.4",
|
2022-02-14 11:34:13 +05:30
|
|
|
"@vue/compiler-sfc": "3.2.31",
|
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-03-03 09:36:54 +05:30
|
|
|
"eslint-config-prettier": "^8.5.0",
|
2021-10-09 00:22:51 +05:30
|
|
|
"eslint-plugin-prettier": "^4.0.0",
|
2022-02-23 09:36:16 +05:30
|
|
|
"eslint-plugin-vue": "^8.5.0",
|
2021-12-28 20:09:20 +05:30
|
|
|
"prettier": "^2.5.1",
|
2022-03-02 09:39:32 +05:30
|
|
|
"vite": "^2.8.6",
|
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-03-07 09:38:29 +05:30
|
|
|
"vite-plugin-windicss": "^1.8.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
|
|
|
}
|