This repository has been archived by the owner on Sep 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
139 lines (139 loc) · 3.84 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "scripts-manager",
"version": "2.1.1",
"description": "Scripts Manager is a tool for streamers, developers, but also anyone who wants to automate actions on their computer.",
"main": "main.js",
"scripts": {
"start": "cross-env NODE_TOOLS=1 electron .",
"lint": "eslint --max-warnings=0 .",
"lint:fix": "eslint --max-warnings=0 --fix .",
"build": "npm run build:nsis && npm run build:portable",
"build:dev": "npm run build:nsis:dev && npm run build:portable:dev",
"build:nsis": "npm run remove-unpacked && electron-builder build --config.files=\"!env.json\" --win nsis",
"build:nsis:dev": "npm run remove-unpacked && electron-builder build --win nsis",
"build:portable": "npm run remove-unpacked && electron-builder build --config.files=\"!env.json\" --win portable",
"build:portable:dev": "npm run remove-unpacked && electron-builder build --win portable",
"remove-unpacked": "node -e \"require('node:fs').rmSync('./dist/win-unpacked', { force: true, recursive: true });\""
},
"repository": "https://github.com/Arubinu/Scripts-Manager",
"keywords": [
"Scripts",
"Manager",
"Addons",
"Scripts",
"OBS",
"Studio",
"Touch",
"Portal",
"Spotify",
"Stream",
"Twitch",
"Multi",
"Actions",
"Flash",
"Widget"
],
"author": "Alvin Pergens",
"license": "GPL-3.0",
"devDependencies": {
"cross-env": "^7.0.3",
"electron": "^19.0.6",
"electron-builder": "^23.6.0",
"eslint": "^8.33.0"
},
"dependencies": {
"@twurple/api": "^6.0.6",
"@twurple/auth": "^6.0.6",
"@twurple/chat": "^6.0.6",
"@twurple/eventsub-ws": "^6.0.6",
"@twurple/pubsub": "^6.0.6",
"dgram": "^1.0.1",
"discord.js": "^14.8.0",
"electron-custom-notifications": "github:Arubinu/electron-custom-notifications",
"electron-log": "^4.4.7",
"electron-store": "^8.0.1",
"node-global-key-listener": "^0.1.1",
"obs-websocket-js": "^5.0.2",
"read-ini-file": "^3.0.1",
"spotify-web-api-node": "^5.0.2",
"temp": "^0.9.4",
"touchportal-api": "github:Arubinu/touchportal-node-api",
"undici": "^5.5.1",
"uniqid": "^5.4.0",
"usb": "^2.4.3",
"write-ini-file": "^3.0.2",
"ws": "^8.13.0"
},
"build": {
"appId": "fr.arubinu42.scripts-manager",
"productName": "Scripts-Manager",
"copyright": "",
"asar": true,
"files": [
"!docs{,/**/*}",
"!screenshot.png",
"!**/*.{md,log,pfx,afphoto,code-workspace}"
],
"extraFiles": [
{
"from": "node_modules/file-type",
"to": "node_modules/file-type",
"filter": [
"**/*"
]
},
{
"from": "node_modules/strtok3",
"to": "node_modules/strtok3",
"filter": [
"**/*"
]
},
{
"from": "node_modules/token-types",
"to": "node_modules/token-types",
"filter": [
"**/*"
]
},
{
"from": "node_modules/peek-readable",
"to": "node_modules/peek-readable",
"filter": [
"**/*"
]
},
{
"from": "node_modules/ieee754",
"to": "node_modules/ieee754",
"filter": [
"**/*"
]
}
],
"afterPack": "./build/afterPack.js",
"win": {
"publisherName": "Arubinu",
"artifactName": "${productName}_v${version}_installer.${ext}",
"target": [
"nsis",
"portable"
]
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowElevation": false,
"packElevateHelper": false,
"allowToChangeInstallationDirectory": true,
"license": "build/license.txt",
"uninstallDisplayName": "Scripts Manager v${version}"
},
"portable": {
"artifactName": "${productName}_v${version}_portable.${ext}"
}
},
"gitHooks": {
"pre-push": "npm run lint"
}
}