mirror of https://github.com/Fabio286/mizar.git
163 lines
5.1 KiB
JSON
163 lines
5.1 KiB
JSON
{
|
|
"name": "mizar",
|
|
"productName": "Mizar",
|
|
"version": "1.0.0",
|
|
"description": "A TCP client/server test/debug tool",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"debug": "npm run rebuild:electron && npm run debug-runner",
|
|
"debug-runner": "node scripts/devRunner.js --remote-debug",
|
|
"compile": "npm run compile:main && npm run compile:workers && npm run compile:renderer",
|
|
"compile:main": "webpack --mode=production --config webpack.main.config.js",
|
|
"compile:workers": "webpack --mode=production --config webpack.workers.config.js",
|
|
"compile:renderer": "webpack --mode=production --config webpack.renderer.config.js",
|
|
"build": "cross-env NODE_ENV=production npm run compile && electron-builder --publish never",
|
|
"build:appx": "npm run build -- --win appx",
|
|
"rebuild:electron": "rimraf ./dist && npm run postinstall && npm run devtools:install",
|
|
"release": "standard-version",
|
|
"release:pre": "npm run release -- --prerelease alpha",
|
|
"devtools:install": "node scripts/devtoolsInstaller",
|
|
"postinstall": "electron-builder install-app-deps",
|
|
"test:e2e": "npm run compile && npm run test:e2e-dry",
|
|
"test:e2e-dry": "xvfb-maybe -- playwright test",
|
|
"lint": "eslint . --ext .js,.ts,.vue && stylelint \"./src/**/*.{css,scss,sass,vue}\"",
|
|
"lint:fix": "eslint . --ext .js,.ts,.vue --fix && stylelint \"./src/**/*.{css,scss,sass,vue}\" --fix",
|
|
"contributors:add": "all-contributors add",
|
|
"contributors:generate": "all-contributors generate"
|
|
},
|
|
"author": "Fabio Di Stasio <fabio286@gmail.com>",
|
|
"main": "./dist/main.js",
|
|
"mizar": {
|
|
"devtoolsId": "nhdogjmejiglipccpnnnanhbledajbpd"
|
|
},
|
|
"build": {
|
|
"appId": "com.fabio286.mizar",
|
|
"artifactName": "${productName}-${version}-${os}_${arch}.${ext}",
|
|
"asar": true,
|
|
"buildDependenciesFromSource": true,
|
|
"directories": {
|
|
"output": "build",
|
|
"buildResources": "assets"
|
|
},
|
|
"asarUnpack": "**\\*.{node,dll}",
|
|
"files": [
|
|
"dist/**/*",
|
|
"node_modules",
|
|
"package.json"
|
|
],
|
|
"win": {
|
|
"target": [
|
|
"nsis",
|
|
"portable"
|
|
]
|
|
},
|
|
"linux": {
|
|
"target": [
|
|
{
|
|
"target": "deb",
|
|
"arch": [
|
|
"x64",
|
|
"armv7l",
|
|
"arm64"
|
|
]
|
|
},
|
|
{
|
|
"target": "AppImage",
|
|
"arch": [
|
|
"x64",
|
|
"armv7l",
|
|
"arm64"
|
|
]
|
|
}
|
|
],
|
|
"icon": "assets/linux",
|
|
"category": "Development"
|
|
},
|
|
"appImage": {
|
|
"license": "./LICENSE",
|
|
"category": "Development"
|
|
},
|
|
"nsis": {
|
|
"license": "./LICENSE",
|
|
"installerIcon": "assets/icon.ico",
|
|
"uninstallerIcon": "assets/icon.ico",
|
|
"installerHeader": "assets/icon.ico"
|
|
},
|
|
"portable": {
|
|
"artifactName": "${productName}-${version}-portable.exe"
|
|
},
|
|
"appx": {
|
|
"displayName": "Mizar TCP Tester",
|
|
"backgroundColor": "transparent",
|
|
"showNameOnTiles": true,
|
|
"identityName": "62514FabioDiStasio.AntaresSQLClient",
|
|
"publisher": "CN=1A2729ED-865C-41D2-9038-39AE2A63AA52",
|
|
"applicationId": "FabioDiStasio.AntaresSQLClient"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@electron/remote": "~2.0.1",
|
|
"@vueuse/core": "~8.7.5",
|
|
"electron-log": "~4.4.1",
|
|
"electron-store": "~8.1.0",
|
|
"electron-updater": "~4.6.5",
|
|
"electron-window-state": "~5.0.3",
|
|
"encoding": "~0.1.13",
|
|
"moment": "~2.29.4",
|
|
"pinia": "~2.0.28",
|
|
"source-map-support": "~0.5.20",
|
|
"vue": "~3.2.45",
|
|
"vue-i18n": "~9.2.2"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/eslint-parser": "~7.15.7",
|
|
"@babel/preset-env": "~7.15.8",
|
|
"@babel/preset-typescript": "~7.16.7",
|
|
"@playwright/test": "~1.28.1",
|
|
"@types/node": "~17.0.23",
|
|
"@typescript-eslint/eslint-plugin": "~5.18.0",
|
|
"@typescript-eslint/parser": "~5.18.0",
|
|
"@vue/compiler-sfc": "~3.2.33",
|
|
"all-contributors-cli": "~6.20.0",
|
|
"babel-loader": "~8.2.3",
|
|
"chalk": "~4.1.2",
|
|
"cross-env": "~7.0.2",
|
|
"css-loader": "~6.5.0",
|
|
"electron": "~22.0.3",
|
|
"electron-builder": "~22.10.3",
|
|
"eslint": "~7.32.0",
|
|
"eslint-config-standard": "~16.0.3",
|
|
"eslint-plugin-import": "~2.24.2",
|
|
"eslint-plugin-node": "~11.1.0",
|
|
"eslint-plugin-promise": "~5.2.0",
|
|
"eslint-plugin-vue": "~8.0.3",
|
|
"file-loader": "~6.2.0",
|
|
"html-webpack-plugin": "~5.5.0",
|
|
"mini-css-extract-plugin": "~2.4.5",
|
|
"node-loader": "~2.0.0",
|
|
"playwright": "~1.28.1",
|
|
"playwright-core": "~1.28.1",
|
|
"postcss-html": "~1.5.0",
|
|
"progress-webpack-plugin": "~1.0.12",
|
|
"rimraf": "~3.0.2",
|
|
"sass": "~1.42.1",
|
|
"sass-loader": "~12.3.0",
|
|
"standard-version": "~9.3.1",
|
|
"style-loader": "~3.3.1",
|
|
"stylelint": "~14.9.1",
|
|
"stylelint-config-recommended-vue": "~1.4.0",
|
|
"stylelint-config-standard": "~26.0.0",
|
|
"stylelint-scss": "~4.3.0",
|
|
"tree-kill": "~1.2.2",
|
|
"ts-loader": "~9.2.8",
|
|
"typescript": "~4.6.3",
|
|
"unzip-crx-3": "~0.2.0",
|
|
"vue-eslint-parser": "~8.3.0",
|
|
"vue-loader": "~16.8.3",
|
|
"webpack": "~5.72.0",
|
|
"webpack-cli": "~4.9.1",
|
|
"webpack-dev-server": "~4.11.1",
|
|
"xvfb-maybe": "~0.2.1"
|
|
}
|
|
}
|