mirror of
https://github.com/Grasscutters/Installer.git
synced 2024-11-26 21:50:31 +00:00
35 lines
690 B
JSON
35 lines
690 B
JSON
{
|
|
"name": "installer",
|
|
"description": "A basic installer for Grasscutter-related applications.",
|
|
"version": "1.0.0",
|
|
|
|
"main": "src/index.js",
|
|
"bin": "src/index.js",
|
|
"scripts": {
|
|
"package": "pkg ."
|
|
},
|
|
|
|
"dependencies": {
|
|
"chalk": "^5.0.1",
|
|
"readline-sync": "^1.4.10",
|
|
"unzipper": "^0.10.11",
|
|
"node-fetch": "^2.6.7",
|
|
"fs-extra": "^10.1.0",
|
|
"node-7z": "^3.0.0",
|
|
"7zip-bin": "^5.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"pkg": "^5.6.0"
|
|
},
|
|
|
|
"pkg": {
|
|
"assets": "resources/**/*",
|
|
"targets": ["node16-windows-x64"],
|
|
"outputPath": "builds",
|
|
"options": [
|
|
"experimental-modules",
|
|
"experimental-json-modules"
|
|
]
|
|
}
|
|
}
|