mirror of
https://github.com/luochaolun/MyWeChatVideoDownloader.git
synced 2025-04-04 23:06:26 +08:00
133 lines
3.7 KiB
JSON
133 lines
3.7 KiB
JSON
{
|
|
"name": "wechat-video-downloader",
|
|
"version": "2.1.0",
|
|
"description": "",
|
|
"main": "./build-electron/index.js",
|
|
"homepage": "./",
|
|
"scripts": {
|
|
"postinstall": "husky install",
|
|
"start": "concurrently \"cross-env BROWSER=none npm run start-web\" \"wait-on http://localhost:3000 && npm run start-electron\" ",
|
|
"start-debug": "concurrently \"cross-env BROWSER=none npm run start-web\" \"wait-on http://localhost:3000 && npm run debug-electron\" ",
|
|
"start-web": "react-app-rewired start",
|
|
"start-electron": "webpack --config webpack.electron.js && electron .",
|
|
"debug-electron": "webpack --config webpack.electron.js && electron --inspect --unhandled-rejections=strict --trace-deprecation .",
|
|
"build-web": "react-app-rewired build",
|
|
"build-electron": "webpack --config webpack.electron.js",
|
|
"build-all": "rm -rf ./build && rm -rf ./build-electron && npm run build-electron && npm run build-web",
|
|
"pack": "npm run build-all && electron-builder",
|
|
"mypack": "npm run build-electron && npm run build-web && electron-builder",
|
|
"gen-icon": "electron-icon-builder --input=./public/icon/icon.png --output=./public/icon",
|
|
"pretty": "prettier -c --write \"(src/**/*|electron/**/*)\""
|
|
},
|
|
"targets": {
|
|
"electron": {
|
|
"source": "electron/index.js",
|
|
"context": "electron-main",
|
|
"distDir": "build-electron"
|
|
}
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "prettier -c --write \"(src/**/*|electron/**/*)\" && git add -A ."
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"concurrently": "^7.1.0",
|
|
"cross-env": "^7.0.3",
|
|
"customize-cra": "^1.0.0",
|
|
"electron": "^26.1.0",
|
|
"electron-builder": "^23.0.3",
|
|
"electron-icon-builder": "^2.0.1",
|
|
"husky": "^8.0.1",
|
|
"less": "^4.1.2",
|
|
"less-loader": "^11.0.0",
|
|
"prettier": "^2.6.2",
|
|
"react-app-rewired": "^2.2.1",
|
|
"react-scripts": "5.0.1",
|
|
"wait-on": "^6.0.1",
|
|
"webpack": "^5.72.1",
|
|
"webpack-cli": "^4.9.2"
|
|
},
|
|
"dependencies": {
|
|
"@ant-design/icons": "^4.7.0",
|
|
"@xstate/react": "^3.0.0",
|
|
"antd": "^4.20.5",
|
|
"axios": "^0.27.2",
|
|
"cross-spawn": "^7.0.3",
|
|
"electron-is-dev": "^2.0.0",
|
|
"electron-log": "^4.4.7",
|
|
"get-port": "^6.1.2",
|
|
"hoxy": "^3.3.1",
|
|
"lodash": "^4.17.21",
|
|
"mkdirp": "^1.0.4",
|
|
"pretty-bytes": "^6.0.0",
|
|
"react": "^18.1.0",
|
|
"react-dom": "^18.1.0",
|
|
"react-hot-toast": "^2.4.1",
|
|
"regedit": "5.0.0",
|
|
"semver": "^7.3.7",
|
|
"xstate": "^4.32.1"
|
|
},
|
|
"author": "lecepin",
|
|
"license": "ISC",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/lecepin/WeChatVideoDownloader.git"
|
|
},
|
|
"build": {
|
|
"extends": null,
|
|
"productName": "WeChatVideoDownloader",
|
|
"appId": "com.lecepin.WeChatVideoDownloader",
|
|
"directories": {
|
|
"output": "packs"
|
|
},
|
|
"npmRebuild": false,
|
|
"files": [
|
|
"build/**/*",
|
|
"build-electron/**/*",
|
|
"public/**/*"
|
|
],
|
|
"mac": {
|
|
"icon": "public/icon/icons/mac/icon.icns",
|
|
"target": {
|
|
"target": "default",
|
|
"arch": [
|
|
"universal"
|
|
]
|
|
}
|
|
},
|
|
"win": {
|
|
"target": [
|
|
{
|
|
"target": "nsis",
|
|
"arch": [
|
|
"ia32"
|
|
]
|
|
}
|
|
],
|
|
"icon": "public/icon/icons/win/icon.ico"
|
|
},
|
|
"nsis": {
|
|
"oneClick": false,
|
|
"perMachine": false,
|
|
"allowElevation": true,
|
|
"allowToChangeInstallationDirectory": true
|
|
},
|
|
"extraResources": [
|
|
"public"
|
|
]
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
}
|
|
}
|