Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "electron-winstaller",
  3. "version": "5.3.1",
  4. "description": "Module to generate Windows installers for Electron apps",
  5. "main": "lib/index.js",
  6. "types": "lib/index.d.ts",
  7. "license": "MIT",
  8. "repository": {
  9. "type": "git",
  10. "url": "https://github.com/electron/windows-installer"
  11. },
  12. "files": [
  13. "lib",
  14. "resources",
  15. "script",
  16. "template.nuspectemplate",
  17. "vendor",
  18. "!vendor/7z.dll",
  19. "!vendor/7z.exe"
  20. ],
  21. "scripts": {
  22. "install": "node ./script/select-7z-arch.js",
  23. "build": "tsc",
  24. "prepublish": "npm run build",
  25. "lint": "eslint --ext .ts src spec",
  26. "ava": "ava --timeout=60s",
  27. "test": "npm run lint && npm run ava",
  28. "tdd": "ava --watch"
  29. },
  30. "dependencies": {
  31. "@electron/asar": "^3.2.1",
  32. "debug": "^4.1.1",
  33. "fs-extra": "^7.0.1",
  34. "lodash": "^4.17.21",
  35. "temp": "^0.9.0"
  36. },
  37. "devDependencies": {
  38. "@types/fs-extra": "^5.0.5",
  39. "@types/lodash": "^4.17.0",
  40. "@types/node": "^20.6.0",
  41. "@types/temp": "^0.8.34",
  42. "@typescript-eslint/eslint-plugin": "^5.62.0",
  43. "@typescript-eslint/parser": "^5.62.0",
  44. "ava": "^5.1.1",
  45. "eslint": "^8.49.0",
  46. "eslint-plugin-ava": "^14.0.0",
  47. "ts-node": "^10.9.1",
  48. "typescript": "^4.9.3"
  49. },
  50. "optionalDependencies": {
  51. "@electron/windows-sign": "^1.1.2"
  52. },
  53. "engines": {
  54. "node": ">=8.0.0"
  55. },
  56. "ava": {
  57. "extensions": [
  58. "ts"
  59. ],
  60. "files": [
  61. "spec/*.ts"
  62. ],
  63. "require": [
  64. "ts-node/register/transpile-only"
  65. ]
  66. }
  67. }