This commit is contained in:
Tianpao
2025-07-01 09:19:58 +08:00
parent 56639731bb
commit fc20a736c4
5 changed files with 6320 additions and 0 deletions

32
package.json Normal file
View File

@@ -0,0 +1,32 @@
{
"name": "deearthx-v2",
"version": "2.0.0",
"description": "",
"license": "ISC",
"author": "Tianpao",
"type": "module",
"main": "main.js",
"scripts": {
"tsbuild": "tsc",
"rollup":"rollup",
"nexe": "nexe -i ./ndist/main.js --ico Dex.ico --build -t x86-22.13.0 --output ./ndist/main.exe",
"upx": ".\\.dist_modules\\upx.exe .\\ndist\\main.exe",
"build": "npm run tsbuild&&npm run rollup&&npm run nexe&&npm run upx",
"test": "tsc&&node dist/main.js"
},
"dependencies": {
"chalk": "^5.4.1",
"cli-progress": "^3.12.0",
"fs-extra": "^11.3.0",
"got": "^14.4.7",
"inquirer": "^12.6.3",
"minizlib": "^3.0.2",
"p-map": "^7.0.3",
"p-retry": "^6.2.1"
},
"devDependencies": {
"nexe": "^5.0.0-beta.4",
"rollup": "^4.44.1",
"typescript": "^5.8.3"
}
}