-
-
Notifications
You must be signed in to change notification settings - Fork 234
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.46 KB
/
package.json
File metadata and controls
57 lines (57 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
53
54
55
56
57
{
"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 ."
},
"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": {
"@stylistic/eslint-plugin": "^5.6.1",
"@types/fs-extra": "^11.0.4",
"@types/luxon": "^3.7.1",
"@types/node": "^20.19.27",
"@types/triple-beam": "^1.3.5",
"@types/yargs": "^17.0.35",
"eslint": "^9.39.2",
"rimraf": "^6.1.1",
"typescript": "~5.9.3",
"typescript-eslint": "^8.51.0"
},
"dependencies": {
"dotenv": "^17.2.3",
"fs-extra": "^11.3.3",
"got": "^14.6.5",
"helios-distribution-types": "^1.3.0",
"luxon": "^3.7.2",
"minimatch": "^10.1.1",
"node-stream-zip": "^1.15.0",
"toml": "^3.0.0",
"triple-beam": "^1.4.1",
"ts-json-schema-generator": "^2.4.0",
"winston": "^3.19.0",
"yargs": "^18.0.0"
}
}