-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 856 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 856 Bytes
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
{
"name": "filesplitter-patcher",
"version": "0.1.0",
"private": true,
"main": "patcher.js",
"bin": "patcher.js",
"scripts": {
"patch": "node patcher.js --install",
"restore": "node patcher.js --restore",
"status": "node patcher.js --status",
"build:exe": "pkg . --target node18-win-x64 --output dist/FileSplitterPatcher.exe",
"build:mac-x64": "pkg . --target node18-macos-x64 --output dist/FileSplitterPatcher-macos-x64",
"build:mac-arm64": "pkg . --target node18-macos-arm64 --output dist/FileSplitterPatcher-macos-arm64"
},
"dependencies": {},
"devDependencies": {
"pkg": "^5.8.1"
},
"pkg": {
"scripts": [
"patcher.js"
],
"assets": [
"FileSplitter.tsx",
"native.ts",
"injected-plugin.template.js",
"patcher-gui.ps1",
"patcher-gui.applescript"
]
}
}