-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.16 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
{
"name": "action-electron-builder",
"version": "1.0.0",
"description": "GitHub Action for building and releasing Electron apps",
"author": {
"name": "DarkGuy10",
"url": "https://github.com/DarkGuy10"
},
"contributors": [
{
"name": "Samuel Meuli",
"email": "[email protected]",
"url": "https://samuelmeuli.com"
},
{
"name": "DarkGuy10",
"url": "https://github.com/DarkGuy10"
}
],
"repository": "github:DarkGuy10/action-electron-builder",
"bugs": {
"url": "https://github.com/DarkGuy10/action-electron-builder/issues"
},
"license": "MIT",
"private": true,
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"bundle": "yarn format:write && yarn package",
"format:write": "prettier --write src/*.ts",
"format:check": "prettier --check src/*.ts",
"package": "ncc build src/index.ts --license licenses.txt",
"package:watch": "yarn package -- --watch"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1"
},
"devDependencies": {
"@types/node": "^20.11.5",
"@vercel/ncc": "^0.38.1",
"prettier": "^3.2.4",
"typescript": "^5.3.3"
},
"packageManager": "[email protected]"
}