-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 4.46 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 4.46 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
83
84
85
86
87
88
{
"name": "arc-power",
"version": "1.0.6",
"license": "GPL-2.0-only",
"private": true,
"description": "Overclocking tool for Intel Arc GPUs (M1: core backend, no UI)",
"type": "module",
"main": "src/main/main.js",
"engines": {
"node": "\u003e=20"
},
"scripts": {
"test": "node --test",
"start": "electron .",
"smoke": "electron . --headless",
"smoke:mock": "electron . --headless --mock",
"make:icon": "node scripts/make-icon.js",
"make:og": "electron scripts/make-og.js",
"make:banner": "electron scripts/make-banner.js",
"build:renderer": "esbuild src/renderer/app.ts --bundle --outfile=src/renderer/out/app.js --format=iife --target=chrome138 && esbuild src/renderer/overlay.ts --bundle --outfile=src/renderer/out/overlay.js --format=iife --target=chrome138 && esbuild src/renderer/advanced-overlay.ts --bundle --outfile=src/renderer/out/advanced-overlay.js --format=iife --target=chrome138 && esbuild src/renderer/recording-toast.ts --bundle --outfile=src/renderer/out/recording-toast.js --format=iife --target=chrome138",
"typecheck": "tsc --noEmit",
"dist": "npm run build:renderer \u0026\u0026 node build/build-dist.js"
},
"build": {
"appId": "com.rid.arcpower",
"productName": "Arc Power",
"icon": "build/icon.ico",
"files": [
"src/**/*",
"src/main/backend/IntelMSR.bin",
"src/main/backend/AMDFamily17.bin",
"src/main/backend/COPYING",
"src/main/backend/PawnIO_setup.exe",
"src/main/backend/presentmon/PresentMon64.exe",
"src/main/backend/presentmon/LICENSE",
"THIRD_PARTY_NOTICES.txt",
"LICENSE",
"package.json"
],
"asarUnpack": [
"node_modules/koffi/**",
"src/main/backend/igcl2023/**",
"src/main/backend/PawnIO_setup.exe",
"src/main/backend/presentmon/**"
],
"extraResources": [
{
"from": "recording-runtime",
"to": "recording-runtime",
"filter": [
"**/*"
]
},
{
"from": "src/assets/app-icon.ico",
"to": "app-icon.ico"
}
],
"win": {
"target": [
"portable"
],
"requestedExecutionLevel": "requireAdministrator"
},
"portable": {
"artifactName": "Arc-Power_Portable.exe",
"requestExecutionLevel": "admin"
},
"directories": {
"output": "dist"
}
},
"dependencies": {
"koffi": "^2.9.0"
},
"devDependencies": {
"@types/node": "^24.13.3",
"electron": "^37.0.0",
"electron-builder": "^26.15.3",
"esbuild": "^0.25.12",
"typescript": "^5.9.3"
},
"allowScripts": {
"electron@37.10.3": true,
"koffi@2.16.3": true,
"esbuild@0.25.12": true
}
}