-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.67 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
{
"name": "scriptlauncher",
"version": "1.9.0",
"author": "Joseph Adams <joseph@josephadams.dev>",
"description": "ScriptLauncher is a really simple app - it accepts socket.io requests and runs the script provided.",
"main": "dist/main.js",
"type": "module",
"scripts": {
"start": "yarn build && electron .",
"build": "tsc",
"electron:rebuild": "electron-builder --dir",
"dev": "concurrently \"tsc -w\" \"wait-on dist/main.js && electron .\"",
"format": "prettier -w .",
"lint:raw": "eslint --ext .ts --ext .js --ignore-pattern dist --ignore-pattern pkg",
"lint": "yarn lint:raw ."
},
"build": {
"appId": "com.josephadams.scriptlauncher",
"productName": "scriptlauncher",
"files": [
"dist/**/*",
"public/**/*",
"assets/**/*",
"package.json"
],
"mac": {
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
}
],
"category": "public.app-category.utilities",
"icon": "assets/tray-icon.png",
"identity": "Joseph Adams (R2PY2DC3A4)",
"extendInfo": {
"NSApplicationSupportsSecureRestorableState": true,
"electronTeamId": "R2PY2DC3A4"
},
"hardenedRuntime": true,
"gatekeeperAssess": true,
"entitlements": "entitlements.mac.plist",
"entitlementsInherit": "entitlements.mac.plist"
},
"win": {
"target": "nsis",
"icon": "assets/tray-icon.ico",
"requestedExecutionLevel": "requireAdministrator"
},
"linux": {
"target": "AppImage",
"icon": "assets/tray-icon.png"
},
"generateUpdatesFilesForAllChannels": false
},
"dependencies": {
"electron-store": "^8.0.0",
"express": "^4.21.2",
"font-list": "^1.5.1",
"fs-extra": "^11.3.0",
"move-file": "^3.1.0",
"robotjs": "^0.6.0",
"socket.io": "^4.8.1",
"systeminformation": "^5.25.11"
},
"devDependencies": {
"@electron/notarize": "^2.5.0",
"@types/express": "^5.0.0",
"@types/fs-extra": "^11",
"@types/node": "^18.0.0",
"concurrently": "^8.0.0",
"electron": "^33.2.1",
"electron-builder": "^25.1.8",
"electron-rebuild": "^3.2.9",
"prettier": "^3.4.2",
"ts-node": "^10.0.0",
"typescript": "^5.7.3",
"wait-on": "^7.0.0"
}
}