electron-builder-signo
Version:
Electron-builder sign function that uses signo as a backend
106 lines (105 loc) • 2.56 kB
JSON
{
"name": "electron-builder-signo",
"version": "1.2.1",
"type": "module",
"description": "Electron-builder sign function that uses signo as a backend",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf dist && tsc && renamer --find '.js' --replace '.mjs' 'dist/**/index.js'",
"typecheck": "tsc --noEmit",
"lint": "esw --color --ext .ts src",
"lint:fix": "esw --color --fix --ext .ts src",
"lint:watch": "esw --color --fix --watch --cache --ext .ts src",
"release": "standard-version",
"release:pre": "standard-version --prerelease"
},
"files": [
"dist/**/*"
],
"exports": {
"default": "./dist/index.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gergof/electron-builder-signo.git"
},
"keywords": [
"electron",
"electron-builder",
"windows",
"signing",
"codesign",
"authenticode",
"sign"
],
"author": "Fandly Gergo",
"license": "MIT",
"bugs": {
"url": "https://github.com/gergof/electron-builder-signo/issues"
},
"homepage": "https://github.com/gergof/electron-builder-signo#readme",
"devDependencies": {
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"electron-builder": "^24.9.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-watch": "^8.0.0",
"prettier": "^3.2.5",
"renamer": "^5.0.0",
"rimraf": "^5.0.5",
"standard-version": "^9.5.0",
"typescript": "^5.3.3"
},
"dependencies": {
"chalk": "^5.3.0",
"env-var": "^7.4.1",
"signo-client": "^1.1.0"
},
"peerDependencies": {
"electron-builder": "^24.9.1"
},
"standard-version": {
"scripts": {
"prerelease": "git fetch --all --tags"
},
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "imp",
"section": "Improvements"
},
{
"type": "ci",
"section": "Build/CI"
},
{
"type": "chore",
"hidden": true
},
{
"type": "docs",
"section": "Documentation"
},
{
"type": "refactor",
"section": "Refactor"
},
{
"type": "test",
"section": "Testing"
}
]
}
}