-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.96 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "github-cli-manager",
"version": "0.1.0",
"private": true,
"author": "GitHub CLI Manager contributors",
"license": "SEE LICENSE IN LICENSE",
"type": "module",
"description": "Local-only GitHub CLI manager that executes approved gh and read-only git commands silently through a guided UI.",
"repository": {
"type": "git",
"url": "git+https://github.com/matt-bat/github-cli-manager.git"
},
"bugs": {
"url": "https://github.com/matt-bat/github-cli-manager/issues"
},
"homepage": "https://github.com/matt-bat/github-cli-manager#readme",
"keywords": [
"github-cli",
"github",
"gh-cli",
"electron",
"desktop-app",
"release-manager",
"developer-tools",
"local-first",
"git"
],
"main": "src/main.js",
"scripts": {
"start": "electron .",
"check": "node --check src/main.js && node --check src/command-runner.js && node --check src/command-catalog.js && node --check src/setup.js && node --check public/app.js",
"test": "node --test",
"test:e2e": "playwright test",
"screenshots:capture": "node scripts/capture-screenshots.mjs",
"package:dir": "electron-builder --dir --publish never",
"release:check": "npm run check && npm test && npm run test:e2e && npm run screenshots:capture && npm run package:dir && npm audit --audit-level=moderate"
},
"engines": {
"node": ">=20"
},
"build": {
"appId": "local.github-cli-manager",
"productName": "GitHub CLI Manager",
"directories": {
"output": "dist"
},
"files": [
"src/**/*",
"public/**/*",
"docs/**/*",
"README.md",
"CHANGELOG.md",
"package.json"
],
"mac": {
"target": "dmg"
},
"win": {
"target": "nsis"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Development"
}
},
"devDependencies": {
"@playwright/test": "^1.61.1",
"electron": "^42.5.0",
"electron-builder": "^26.15.3"
}
}