-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1020 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1020 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
32
33
34
35
36
37
38
39
40
41
{
"name": "@cubiclauncher/neox-core",
"module": "src/index.ts",
"type": "module",
"version": "1.0.3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "swc src -d dist && tsc --emitDeclarationOnly --outDir dist/src",
"test": "ts-node src/test/dowload.ts",
"test:improved": "ts-node src/test/improved-download.ts",
"dev": "ts-node src/test/dowload.ts",
"start": "node dist/index.js"
},
"devDependencies": {
"@swc/cli": "^0.7.7",
"@types/bun": "latest",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.0.0",
"ts-node": "^10.9.0"
},
"dependencies": {
"axios": "^1.9.0",
"fs-extra": "^11.3.0",
"typescript": "^5"
},
"keywords": [
"minecraft",
"downloader",
"launcher",
"typescript",
"bun",
"concurrent",
"optimized",
"fast"
],
"description": "Minecraft downloader optimizado con descargas concurrentes, verificación de archivos y caché inteligente"
}