forked from dscalzi/helios-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.42 KB
/
package.json
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "limbo-core",
"version": "1.2.5",
"description": "A library containing core mechanisms for Limbo Launcher",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist",
"tsc": "tsc",
"build": "npm run clean && npm run tsc",
"lint": "eslint .",
"test": "cross-env TS_NODE_PROJECT='./tsconfig.test.json' NODE_ENV=test mocha -r ts-node/register --recursive test/**/**/*.ts",
"bl": "npm run build && npm link",
"prepack": "npm run build"
},
"exports": {
".": "./dist/index.js",
"./common": "./dist/common.js",
"./dl": "./dist/dl.js",
"./java": "./dist/java.js",
"./microsoft": "./dist/microsoft.js",
"./mojang": "./dist/mojang.js"
},
"typesVersions": {
"*": {
".": [
"./dist/index.d.ts"
],
"common": [
"./dist/common.d.ts"
],
"dl": [
"./dist/dl.d.ts"
],
"java": [
"./dist/java.d.ts"
],
"microsoft": [
"./dist/microsoft.d.ts"
],
"mojang": [
"./dist/mojang.d.ts"
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Limbo-Studios/limbo-core.git"
},
"keywords": [
"limbo-launcher",
"limbo-core",
"minecraft-launcher"
],
"author": "Daniel Scalzi",
"license": " LGPL-3.0-only",
"bugs": {
"url": "https://github.com/Limbo-Studios/Limbo-Core/issues"
},
"homepage": "https://github.com/Limbo-Studios/Limbo-Core#readme",
"devDependencies": {
"@types/chai": "^4.3.14",
"@types/chai-as-promised": "^7.1.8",
"@types/fs-extra": "^11.0.4",
"@types/luxon": "^3.4.2",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.7",
"@types/tar-fs": "^2.0.4",
"@types/triple-beam": "^1.3.5",
"@types/winreg": "^1.2.36",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"helios-distribution-types": "^1.3.0",
"mocha": "^10.4.0",
"nock": "^13.5.4",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"fastq": "^1.17.1",
"fs-extra": "^11.2.0",
"got": "^11.8.6",
"luxon": "^3.4.4",
"node-stream-zip": "^1.15.0",
"semver": "^7.6.0",
"tar-fs": "^3.0.6",
"triple-beam": "^1.4.1",
"winreg": "^1.2.5",
"winston": "^3.13.0"
},
"files": [
"dist"
]
}