-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
57 lines (57 loc) · 1.71 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@felixrieseberg/electron-forge-maker-nsis",
"version": "7.0.0",
"description": "An `electron-forge` maker for NSIS that supports `electron-forge` v6 and can be used as a replacement for `electron-builder`. Supports code-signing and basic updates with `electron-updater`.",
"main": "dist/cjs/makerNsis.js",
"module": "dist/esm/makerNsis.js",
"files": [
"dist",
"yarn.lock",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/felixrieseberg/electron-forge-maker-nsis.git"
},
"author": {
"name": "Felix Rieseberg",
"email": "felix@felixrieseberg.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/felixrieseberg/electron-forge-maker-nsis/issues"
},
"homepage": "https://github.com/felixrieseberg/electron-forge-maker-nsis",
"dependencies": {
"@electron-forge/maker-base": "^7.4.0",
"app-builder-lib": "^24.13.3",
"debug": "^4.3.7",
"electron-updater-yaml": "^1.1.2",
"electron-windows-sign": "^1.0.0",
"fs-extra": "^11.2.0"
},
"devDependencies": {
"@types/debug": "^4.1.8",
"@types/fs-extra": "^11.0.1",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.29.0",
"eslint-config-eslint": "^7.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"standard": "^17.0.0",
"typescript": "^5.0.4"
},
"scripts": {
"build": "tsc && tsc -p tsconfig.esm.json",
"lint": "eslint --ext .ts,.js src",
"prepublishOnly": "yarn build"
},
"engines": {
"node": ">=12.0.0"
}
}