-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.21 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.21 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
{
"name": "ifactory",
"productName": "iFactory",
"version": "0.4.1",
"description": "Build plugins with the iPlug2 framework, Codex and GitHub all in one integrated environment",
"author": "Dart Spark",
"license": "UNLICENSED",
"main": "main.js",
"build": {
"appId": "com.dartspark.ifactory",
"productName": "iFactory",
"executableName": "iFactory",
"directories": {
"output": "dist"
},
"files": [
"**/*",
"!**/dist/**",
"!**/.git/**",
"!**/node_modules/**"
],
"win": {
"target": "nsis",
"icon": "icons/logo.ico"
},
"extraFiles": [
{
"from": "build/cli",
"to": "cli"
}
],
"nsis": {
"include": "build/installer.nsh",
"warningsAsErrors": false,
"createDesktopShortcut": false
},
"beforeBuild": "scripts/before-build.js"
},
"scripts": {
"start": "electron .",
"build:cli": "node scripts/build-cli.js"
},
"bin": {
"ifact": "ifact.js"
},
"devDependencies": {
"electron": "^29.1.0",
"electron-builder": "^26.4.0",
"electron-rebuild": "^3.2.9",
"pkg": "^5.8.1"
},
"dependencies": {
"better-sqlite3": "^12.6.2",
"sql.js": "^1.13.0"
}
}