-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.29 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.29 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
{
"name": "ctrace-gui",
"version": "4.1.1",
"description": "A modern Electron-based GUI for CTrace static analysis tool",
"main": "src/main.js",
"scripts": {
"test": "node --test",
"test:wsl": "node src/main/utils/wslTest.js",
"start": "electron .",
"dist": "electron-builder",
"dist:publish": "electron-builder --publish always",
"dist:win": "electron-builder --win",
"dist:mac": "electron-builder --mac",
"dist:linux": "electron-builder --linux",
"build:verify": "./scripts/build-verify.sh",
"docs": "jsdoc -c jsdoc.conf.json",
"docs:watch": "jsdoc -c jsdoc.conf.json --watch"
},
"keywords": [
"ctrace",
"static-analysis",
"cpp",
"c",
"development",
"gui",
"electron"
],
"author": "CTrace GUI Team",
"license": "ISC",
"dependencies": {
"chokidar": "^4.0.3",
"electron-updater": "^6.8.3",
"monaco-editor": "^0.55.1",
"node-llama-cpp": "^3.14.2",
"uuid": "^13.0.0"
},
"devDependencies": {
"electron": "^38.0.0",
"electron-builder": "^26.0.12",
"electron-reload": "^2.0.0-alpha.1",
"jsdoc": "^4.0.4"
},
"build": {
"publish": [
{
"provider": "github",
"owner": "CoreTrace",
"repo": "coretrace-gui"
}
],
"asar": true,
"extraResources": [
{
"from": "bin/ctrace",
"to": "bin/ctrace"
}
],
"asarUnpack": [],
"afterPack": "./scripts/remove-locales.js",
"appId": "com.coretrace.ctracegui",
"compression": "maximum",
"productName": "CtraceGUI",
"win": {
"target": "nsis",
"icon": "assets/ctrace.ico"
},
"mac": {
"target": "dmg",
"icon": "assets/ctrace.icns",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"notarize": true
},
"linux": {
"target": "AppImage",
"icon": "assets/ctrace.png",
"category": "Development",
"synopsis": "Static analysis tool for C/C++ code",
"description": "A modern Electron-based GUI application that provides an intuitive interface for running CTrace static analysis on C/C++ code."
}
}
}