-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.89 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
{
"name": "filesplitter-patcher",
"version": "0.2.4",
"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 node22-win-x64 --output dist/FileSplitterPatcher.exe",
"build:mac-x64": "pkg . --target node22-macos-x64 --output dist/FileSplitterPatcher-macos-x64",
"build:mac-arm64": "pkg . --target node22-macos-arm64 --no-bytecode --public --public-packages \"*\" --output dist/FileSplitterPatcher-macos-arm64",
"build:mac-arm64:signed": "npm run build:mac-arm64 && codesign --force --sign - dist/FileSplitterPatcher-macos-arm64",
"test:injected": "node tests/injected-plugin-lifecycle.test.js",
"test:vencord-patcher": "node tests/vencord-patcher.test.js",
"test": "npm run test:injected && npm run test:vencord-patcher && npm run test:legal",
"test:legal": "node tests/legal-surface.test.js"
},
"pkg": {
"scripts": [
"patcher.js"
],
"assets": [
"FileSplitter.tsx",
"native.ts",
"styles.css",
"types.ts",
"src/equicordplugins/fileSplitter/index.tsx",
"src/equicordplugins/fileSplitter/native.ts",
"src/equicordplugins/fileSplitter/styles.css",
"src/equicordplugins/fileSplitter/types.ts",
"injected-plugin.template.js",
"patcher-gui.ps1",
"patcher-gui.applescript",
"LICENSE",
"LEGAL_NOTICE.md",
"THIRD_PARTY_NOTICES.md",
"licenses/Node.js-LICENSE",
"licenses/yao-pkg-pkg-LICENSE"
]
},
"description": "Splits user-selected files into attachment-sized parts and reconstructs them locally.",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/sioaeko/Equicord-splitLargeFile.git"
},
"devDependencies": {
"@yao-pkg/pkg": "6.22.0"
}
}