-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.15 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.15 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
89
90
91
92
{
"name": "iextract",
"version": "1.0.0",
"description": "Fully offline iMessage export tool.",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"build:signed": "env-cmd -f .env electron-builder --mac --publish never",
"rebuild": "electron-rebuild",
"postinstall": "electron-builder install-app-deps"
},
"author": "BuiltByWill <builtbywill@proton.me>",
"devDependencies": {
"electron": "37.2.0",
"electron-builder": "^24.13.3",
"electron-rebuild": "3.2.9",
"env-cmd": "^10.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/builtbywill-sp/iExtract.git"
},
"keywords": [],
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/builtbywill-sp/iExtract/issues"
},
"homepage": "https://github.com/builtbywill-sp/iExtract#readme",
"dependencies": {
"better-sqlite3": "12.2.0",
"sqlite3": "^5.1.7"
},
"engines": {
"node": "20.x"
},
"build": {
"appId": "com.silentprototype.iextract",
"productName": "iExtract",
"files": [
"main.js",
"preload.js",
"index.html",
"index.js",
"index.css",
"extract.js",
"assets/**/*",
"build/**/*",
"!node_modules/.cache/**"
],
"asar": true,
"extraFiles": [
"extract.js"
],
"mac": {
"category": "public.app-category.productivity",
"target": [
"dmg",
"zip"
],
"entitlements": "entitlements.mac.plist",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlementsInherit": "entitlements.mac.plist",
"identity": "${APPLE_IDENTITY:-Developer ID Application: William Brown (F38ZFX2553)}",
"icon": "build/icon.icns"
},
"win": {
"target": "nsis"
},
"linux": {
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
},
{
"target": "deb",
"arch": [
"x64"
]
}
],
"category": "Utility",
"icon": "build/icons/512x512.png"
},
"copyright": "Copyright © 2025 BuiltByWill"
}
}