client/package.json
2023-01-09 01:33:04 +01:00

90 lines
2.1 KiB
JSON

{
"name": "webplay-client",
"version": "0.1.0",
"private": true,
"description": "Web client for WebPlay Server",
"author": "Artem Anufrij <artem.anufrij@live.de>",
"scripts": {
"serve": "NODE_OPTIONS=--openssl-legacy-provider vue-cli-service serve",
"build": "NODE_OPTIONS=--openssl-legacy-provider vue-cli-service build",
"lint": "vue-cli-service lint",
"electron": "electron .",
"linux-appimage": "electron-builder"
},
"main": "electron.js",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/vue-fontawesome": "^3.0.2",
"axios": "^1.2.2",
"body-parser": "^1.19.1",
"core-js": "^3.27.1",
"express": "^4.18.2",
"mp3tag.js": "^3.3.2",
"vue": "*",
"vue-router": "^4.1.6",
"vuex": "^4.1.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"electron": "^22.0.0",
"electron-builder": "^23.6.0",
"eslint": "^8.31.0",
"eslint-plugin-vue": "^9.8.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {
"no-undef": "off",
"no-console": "off"
},
"parserOptions": {
"parser": "@babel/eslint-parser"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"build": {
"appId": "de.anufrij.webplay",
"directories": {
"output": "release"
},
"linux": {
"target": [
{
"target": "AppImage"
}
],
"category": "AudioVideo",
"synopsis": "Generate your PMP",
"packageCategory": "AudioVideo",
"artifactName": "${productName}.${ext}",
"desktop": {
"Encoding": "UTF-8",
"Name": "WebPlay",
"Type": "Application",
"Categories": "AudioVideo",
"Terminal": "false"
}
}
},
"productName": "WebPlay Client"
}