-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.53 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
{
"name": "cipher-overlay",
"version": "1.0.0",
"description": "Invisible overlay — hidden from all screen recorders",
"type": "module",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder --win --x64 --publish never",
"build:win": "electron-builder --win --x64 --publish never",
"build:mac": "electron-builder --mac --x64 --arm64 --publish never",
"build:linux": "electron-builder --linux AppImage --x64 --publish never"
},
"devDependencies": {
"electron": "^28.3.3",
"electron-builder": "^24.9.1"
},
"build": {
"appId": "com.cipher.overlay",
"productName": "Cipher",
"directories": {
"output": "dist",
"buildResources": "build"
},
"publish": null,
"files": [
"**/*",
"!**/.git/**",
"!dist/**",
"!scripts/**"
],
"win": {
"target": [
{
"target": "portable",
"arch": ["x64"]
}
],
"icon": "assets/icon.ico",
"signAndEditExecutable": false
},
"mac": {
"target": ["dmg"],
"category": "public.app-category.productivity",
"icon": "icon.png",
"artifactName": "Cipher-mac-${arch}.${ext}"
},
"linux": {
"target": ["AppImage"],
"category": "Utility",
"icon": "icon.png",
"artifactName": "Cipher-linux.${ext}"
},
"portable": {
"artifactName": "Cipher.exe"
},
"nsis": {
"oneClick": true,
"perMachine": false
}
},
"dependencies": {
"tesseract.js": "^7.0.0"
}
}