You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "@electron/windows-sign",
  3. "version": "1.1.3",
  4. "description": "Codesign Electron Windows apps",
  5. "main": "dist/cjs/index.js",
  6. "module": "dist/esm/index.js",
  7. "files": [
  8. "dist",
  9. "entitlements",
  10. "README.md",
  11. "LICENSE",
  12. "bin",
  13. "vendor"
  14. ],
  15. "bin": {
  16. "electron-windows-sign": "bin/electron-windows-sign.js"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "git+https://github.com/electron/windows-sign.git"
  21. },
  22. "author": {
  23. "name": "Felix Rieseberg",
  24. "email": "felix@felixrieseberg.com"
  25. },
  26. "license": "BSD-2-Clause",
  27. "bugs": {
  28. "url": "https://github.com/electron/windows-sign/issues"
  29. },
  30. "homepage": "https://github.com/electron/windows-sign",
  31. "dependencies": {
  32. "cross-dirname": "^0.1.0",
  33. "debug": "^4.3.4",
  34. "fs-extra": "^11.1.1",
  35. "minimist": "^1.2.8",
  36. "postject": "^1.0.0-alpha.6"
  37. },
  38. "devDependencies": {
  39. "@types/debug": "^4.1.10",
  40. "@types/fs-extra": "^11.0.3",
  41. "@types/node": "^18.18.7",
  42. "@typescript-eslint/eslint-plugin": "^5.62.0",
  43. "@typescript-eslint/parser": "^5.62.0",
  44. "eslint": "^8.52.0",
  45. "eslint-config-eslint": "^9.0.0",
  46. "eslint-config-standard": "^17.1.0",
  47. "eslint-plugin-import": "^2.29.0",
  48. "eslint-plugin-node": "^11.1.0",
  49. "eslint-plugin-promise": "^6.1.1",
  50. "globstar": "^1.0.0",
  51. "standard": "^17.1.0",
  52. "tsx": "^3.14.0",
  53. "typedoc": "~0.25.13",
  54. "typescript": "^5.2.2"
  55. },
  56. "scripts": {
  57. "build": "tsc && tsc -p tsconfig.esm.json",
  58. "docs": "npx typedoc",
  59. "lint": "eslint --ext .ts,.js src bin test",
  60. "test:loader": "globstar -- node --loader tsx --test \"test/**/*.spec.ts\"",
  61. "test": "globstar -- node --import tsx --test \"test/**/*.spec.ts\"",
  62. "prepublishOnly": "yarn build"
  63. },
  64. "engines": {
  65. "node": ">=14.14"
  66. }
  67. }