-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.55 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
75
76
77
78
79
80
81
82
{
"name": "forge",
"productName": "Forge",
"version": "0.1.0",
"private": true,
"author": "Magnus Opera SAS",
"license": "MIT",
"type": "module",
"description": "A focus-first desktop GitHub client.",
"main": "dist-electron/electron/main/main.js",
"scripts": {
"dev": "concurrently -k \"npm:dev:renderer\" \"npm:dev:main\" \"npm:dev:electron\"",
"dev:renderer": "vite --host 127.0.0.1 --port 5173 --strictPort",
"dev:main": "tsc -p tsconfig.electron.json --watch --preserveWatchOutput",
"dev:electron": "wait-on tcp:5173 dist-electron/electron/main/main.js && electron .",
"build": "tsc -p tsconfig.electron.json && vite build",
"dist:mac": "npm run build && electron-builder --mac zip --arm64 --publish never",
"website": "npm run website:build && vite --host 127.0.0.1 --port 4174 .out/site",
"website:build": "node website/build.mjs",
"test": "vitest run --reporter=default --reporter=junit --outputFile.junit=.out/test-results/unit.xml",
"typecheck": "tsc --noEmit -p tsconfig.json && tsc --noEmit -p tsconfig.electron.json",
"preview": "vite preview --host 127.0.0.1 --port 4173"
},
"build": {
"appId": "com.magnusopera.forge",
"productName": "Forge",
"asar": true,
"npmRebuild": false,
"directories": {
"output": ".out/electron"
},
"files": [
"assets/**/*",
"dist/renderer/**/*",
"dist-electron/**/*",
"package.json",
"node_modules/**/*"
],
"mac": {
"category": "public.app-category.developer-tools",
"icon": "assets/forge-icon.icns",
"target": [
{
"target": "zip",
"arch": [
"arm64"
]
}
],
"identity": null,
"hardenedRuntime": true,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist"
}
},
"dependencies": {
"@octokit/graphql": "^8.2.2",
"@octokit/rest": "^21.1.1",
"@pierre/diffs": "^1.2.12",
"electron-updater": "^6.8.9",
"lucide-react": "^0.468.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^10.1.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"yaml": "^2.9.0"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/react": "^18.3.17",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"concurrently": "^9.1.2",
"electron": "^41.7.1",
"electron-builder": "^26.15.3",
"typescript": "^5.7.2",
"vite": "^6.0.6",
"vitest": "^4.1.10",
"wait-on": "^8.0.1"
}
}