This repository was archived by the owner on Jun 8, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.46 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.46 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": "cubic-neutron",
"version": "1.0.3",
"description": "Un módulo que permite la descarga y la ejecución de minecraft java con node.js",
"types": "dist/index.d.ts",
"type": "module",
"keywords": [
"minecraft-launcher",
"minecraft-core",
"minecraft-launcher-core",
"optifine",
"forge",
"fabric"
],
"license": "MIT",
"author": "Santiagolxx",
"main": "dist/index.js",
"homepage": "https://github.com/CubicLauncher/neutron",
"repository": {
"type": "git",
"url": "git+https://github.com/CubicLauncher/neutron"
},
"scripts": {
"clean": "rm -rf unpacked dist",
"build:js": "tsc",
"build:types": "tsc -p tsconfig.types.json",
"bundle:js": "rollup -c rollup.config.mjs",
"bundle:types": "rollup -c rollup.dts.config.mjs",
"postbuild": "rm -rf unpacked",
"build": "npm run clean && npm run build:js && npm run build:types && npm run bundle:js && npm run bundle:types && npm run postbuild"
},
"dependencies": {
"@types/adm-zip": "^0.5.7",
"@types/node": "^22.15.17",
"adm-zip": "^0.5.16",
"axios": "^1.9.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"oxlint": "^0.16.10",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.2",
"concurrently": "^9.1.2",
"rollup": "^4.40.2",
"rollup-plugin-dts": "^6.2.1",
"typescript": "^5.8.3"
},
"trustedDependencies": [
"core-js"
]
}