-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.14 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.14 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
{
"name": "inklink-app",
"version": "1.0.0",
"description": "",
"main": "src/main/main.js",
"scripts": {
"start": "electron .",
"prod:build": "node buildscripts/build-prod.mjs",
"dist": "npm run prod:build && electron-builder"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"electron": "^40.4.1",
"electron-builder": "^26.7.0",
"esbuild": "^0.27.3",
"javascript-obfuscator": "^5.3.0",
"png-to-ico": "^3.0.1"
},
"dependencies": {
"@nut-tree-fork/nut-js": "^4.2.6"
},
"build": {
"appId": "com.redkush01.inklink",
"productName": "InkLink",
"asar": true,
"compression": "maximum",
"removePackageScripts": true,
"electronLanguages": [
"en-US"
],
"files": [
"app-prod/**/*",
"package.json",
"node_modules/@nut-tree-fork/**/*",
"node_modules/koffi/**/*"
],
"extraMetadata": {
"main": "app-prod/main.js"
},
"mac": {
"target": [
"zip"
],
"icon": "build/icon.icns"
},
"win": {
"target": ["nsis"],
"icon": "build/icon.ico"
}
}
}