-
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.58 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.58 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": "appinspect",
"version": "0.1.0",
"description": "IPA reverse engineering desktop app",
"main": "dist/main/index.js",
"private": true,
"scripts": {
"build": "bun run build:main && bun run build:preload && bun run build:renderer && bun run build:css && bun run build:mcp",
"build:main": "bun build src/main/index.ts --outdir dist/main --target node --format cjs --external electron",
"build:preload": "bun build src/preload/index.ts --outdir dist/preload --target node --format cjs --external electron",
"build:renderer": "bun build src/renderer/index.ts --outdir dist/renderer --target browser",
"build:css": "bun scripts/build-css.ts",
"start": "bun run build && electron .",
"dist": "bun run build && electron-builder",
"dist:mac": "bun run build && electron-builder --mac",
"dist:win": "bun run build && electron-builder --win",
"dist:win:portable": "bun run build && electron-builder --win portable",
"dist:linux": "bun run build && electron-builder --linux",
"build:mcp": "bun build src/mcp/server.ts --outfile dist/mcp/server.js --target bun --external @modelcontextprotocol/sdk --external bplist-parser --external plist --external fflate --external electron",
"mcp": "bun dist/mcp/server.js",
"typecheck": "tsc --noEmit",
"test": "bun test",
"lint": "biome lint ./src ./scripts",
"format": "biome format --write ./src ./scripts",
"format:check": "biome format ./src ./scripts",
"check": "biome check ./src ./scripts",
"check:fix": "biome check --write ./src ./scripts",
"prepare": "husky"
},
"build": {
"appId": "com.icraze.appinspect",
"productName": "AppInspect",
"files": [
"dist/**/*",
"src/renderer/index.html",
"package.json"
],
"directories": {
"output": "release"
},
"mac": {
"category": "public.app-category.developer-tools",
"target": [
{
"target": "dmg",
"arch": [
"universal"
]
}
]
},
"win": {
"target": [
"nsis"
],
"signAndEditExecutable": false
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Development"
}
},
"devDependencies": {
"@biomejs/biome": "^2.4.11",
"@types/bun": "^1.3.11",
"electron": "^35.7.5",
"electron-builder": "^26.8.1",
"fflate": "^0.8.2",
"husky": "^9.1.7"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"bplist-parser": "^0.3.2",
"plist": "^3.1.0"
}
}