打卡工具
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

electron-builder.json 1.3KB

2週間前
1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "appId": "com.attendance.tool",
  3. "productName": "Attendance Tool",
  4. "directories": {
  5. "output": "dist"
  6. },
  7. "files": [
  8. "**/*",
  9. "!**/node_modules/*/{CHANGELOG.md,README.md,README,readme.md,readme}",
  10. "!**/node_modules/*/{test,__tests__,tests,powered-test,example,examples}",
  11. "!**/node_modules/*.d.ts",
  12. "!**/node_modules/.bin",
  13. "!**/*.{iml,o,hprof,orig,pyc,pyo,rbc,swp,csproj,sln,xproj}",
  14. "!.editorconfig",
  15. "!**/._*",
  16. "!**/{.DS_Store,.git,.hg,.svn,CVS,RCS,SCCS,.gitignore,.gitattributes}",
  17. "!**/{__pycache__,thumbs.db,.flowconfig,.idea,.vs,.nyc_output}",
  18. "!**/{appveyor.yml,.travis.yml,circle.yml}",
  19. "!**/{npm-debug.log,yarn.lock,.yarn-integrity,.yarn-metadata.json}"
  20. ],
  21. "extraResources": [
  22. {
  23. "from": "C:/Users/WIN/AppData/Local/ms-playwright/chromium-1155",
  24. "to": "ms-playwright/chromium-1155"
  25. },
  26. {
  27. "from": "C:/Users/WIN/AppData/Local/ms-playwright/chromium_headless_shell-1155",
  28. "to": "ms-playwright/chromium_headless_shell-1155"
  29. },
  30. {
  31. "from": "C:/Users/WIN/AppData/Local/ms-playwright/ffmpeg-1011",
  32. "to": "ms-playwright/ffmpeg-1011"
  33. }
  34. ],
  35. "win": {
  36. "target": "portable",
  37. "icon": "icon.ico",
  38. "signingHashAlgorithms": null,
  39. "signAndEditExecutable": false
  40. },
  41. "asar": true,
  42. "forceCodeSigning": false,
  43. "compression": "maximum"
  44. }