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-07-26 09:38:38 +05:30
|
|
|
"@fortawesome/fontawesome-svg-core": "^6.1.2",
|
2022-07-26 10:06:38 +05:30
|
|
|
"@fortawesome/free-brands-svg-icons": "^6.1.2",
|
2022-07-26 09:58:10 +05:30
|
|
|
"@fortawesome/free-solid-svg-icons": "^6.1.2",
|
2022-06-20 09:38:34 +05:30
|
|
|
"@fortawesome/vue-fontawesome": "^3.0.1",
|
2021-12-29 06:03:15 +05:30
|
|
|
"buffer": "^6.0.3",
|
2022-08-24 09:38:04 +05:30
|
|
|
"dompurify": "^2.3.12",
|
2022-05-23 23:19:41 +05:30
|
|
|
"hotkeys-js": "^3.9.4",
|
2022-07-27 09:37:42 +05:30
|
|
|
"javascript-time-ago": "^2.5.7",
|
2022-07-11 09:39:42 +05:30
|
|
|
"mux.js": "^6.2.0",
|
2022-08-17 09:37:53 +05:30
|
|
|
"shaka-player": "4.2.0",
|
2021-12-29 06:03:15 +05:30
|
|
|
"stream": "^0.0.2",
|
2022-06-07 09:36:58 +05:30
|
|
|
"vue": "^3.2.37",
|
2022-08-08 09:46:19 +05:30
|
|
|
"vue-i18n": "^9.2.2",
|
2022-07-28 09:38:41 +05:30
|
|
|
"vue-router": "^4.1.3",
|
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-08-12 14:14:52 +05:30
|
|
|
"@intlify/vite-plugin-vue-i18n": "^6.0.1",
|
2022-05-03 09:36:35 +05:30
|
|
|
"@vitejs/plugin-legacy": "^1.8.2",
|
2022-08-15 09:38:40 +05:30
|
|
|
"@vitejs/plugin-vue": "^2.3.4",
|
2022-06-07 13:58:48 +05:30
|
|
|
"@vue/compiler-sfc": "3.2.37",
|
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",
|
2022-06-30 09:39:45 +05:30
|
|
|
"eslint-plugin-prettier": "^4.2.1",
|
2022-07-26 09:39:14 +05:30
|
|
|
"eslint-plugin-vue": "^9.3.0",
|
2022-06-17 09:37:56 +05:30
|
|
|
"prettier": "^2.7.1",
|
2022-07-11 09:39:30 +05:30
|
|
|
"vite": "^2.9.14",
|
2022-07-20 09:39:31 +05:30
|
|
|
"vite-plugin-eslint": "^1.7.0",
|
2022-07-19 09:43:59 +05:30
|
|
|
"vite-plugin-pwa": "^0.12.3",
|
2022-07-20 09:40:05 +05:30
|
|
|
"vite-plugin-windicss": "^1.8.7"
|
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
|
|
|
}
|