newwave-core
Version:
A library containing core mechanisms for Helios Launcher
99 lines (98 loc) • 2.57 kB
JSON
{
"name": "newwave-core",
"version": "1.0.2",
"description": "A library containing core mechanisms for Helios 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/dscalzi/helios-core.git"
},
"keywords": [
"helios-launcher",
"helios-core",
"minecraft-launcher"
],
"author": "Daniel Scalzi",
"license": " LGPL-3.0-only",
"bugs": {
"url": "https://github.com/dscalzi/helios-core/issues"
},
"homepage": "https://github.com/dscalzi/helios-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"
]
}