-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.23 KB
/
package.json
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
{
"name": "silex-desktop",
"version": "1.2.15",
"description": "Silex desktop application",
"main": "./src/index.js",
"author": "ArtFX TDs",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"cross-env": "^7.0.3",
"electron": "^13.5.2",
"electron-builder": "^22.10.5",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-require-path-exists": "^1.1.9",
"husky": "^6.0.0",
"nodemon": "^2.0.7",
"prettier": "2.4.1"
},
"repository": {
"type": "git",
"url": "https://github.com/ArtFXDev/silex-desktop.git"
},
"engines": {
"node": ">=16.10.0"
},
"scripts": {
"electron": "electron src",
"start": "cross-env NODE_ENV=development nodemon --watch ./src/**/*.js --exec \"npm run electron\"",
"build:windows": "electron-builder build --win --publish never",
"build:linux": "electron-builder build --linux --publish never",
"format": "prettier --write .",
"lint": "eslint --ext js ."
},
"dependencies": {
"@artfxdev/silex-socket-service": "1.5.7",
"auto-launch": "^5.0.5",
"axios": "^0.24.0",
"deepmerge": "^4.2.2",
"electron-updater": "^4.3.9",
"eslint-plugin-import": "^2.26.0",
"find-process": "^1.4.5",
"node-cron": "^3.0.0",
"os-utils": "^0.0.14",
"pino": "^7.1.0",
"pino-pretty": "^7.2.0",
"uuid": "^8.3.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"build": {
"appId": "com.silexdesktop",
"mac": {
"category": "public.pipeline.silex-desktop"
},
"win": {
"icon": "./src/assets/images/app.ico"
},
"linux": {
"icon": "./src/assets/images/256x256.png"
},
"productName": "silex-desktop",
"extraResources": [
"tmp/**/*",
"data/*.db",
"build/**/*"
],
"files": [
"src/**/*"
],
"artifactName": "${productName}-Setup-${version}.${ext}",
"nsis": {
"allowToChangeInstallationDirectory": false,
"oneClick": true,
"shortcutName": "Silex Desktop",
"installerIcon": "./src/assets/images/app.ico"
}
}
}