Files
patatapack2-distribution/package.json
2023-08-13 19:15:35 -04:00

58 lines
1.5 KiB
JSON

{
"name": "nebula",
"version": "0.1.0",
"description": "Utility package to generate a distribution.json for Helios.",
"type": "module",
"exports": "./dist/index.js",
"scripts": {
"clean": "rimraf dist",
"tsc": "tsc",
"build": "npm run clean && npm run tsc",
"start": "npm run build && node dist/index.js",
"fs": "node dist/index.js",
"faststart": "node dist/index.js",
"lint": "eslint . --ext .js,.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dscalzi/Nebula.git"
},
"keywords": [
"helios",
"nebula",
"distribution"
],
"author": "Daniel Scalzi",
"license": "MIT",
"bugs": {
"url": "https://github.com/dscalzi/Nebula/issues"
},
"homepage": "https://github.com/dscalzi/Nebula#readme",
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/luxon": "^3.3.1",
"@types/node": "^18.17.5",
"@types/triple-beam": "^1.3.2",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"eslint": "^8.47.0",
"rimraf": "^5.0.1",
"typescript": "^5.1.6"
},
"dependencies": {
"dotenv": "^16.3.1",
"fs-extra": "^11.1.1",
"got": "^13.0.0",
"helios-distribution-types": "^1.2.0",
"luxon": "^3.4.0",
"minimatch": "^9.0.3",
"node-stream-zip": "^1.15.0",
"toml": "^3.0.0",
"triple-beam": "^1.4.1",
"ts-json-schema-generator": "^1.2.0",
"winston": "^3.10.0",
"yargs": "^17.7.2"
}
}