-
-
Notifications
You must be signed in to change notification settings - Fork 208
/
package.json
57 lines (57 loc) · 1.46 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
{
"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-ts": "^2.9.0",
"@types/fs-extra": "^11.0.4",
"@types/luxon": "^3.4.2",
"@types/node": "^20.16.11",
"@types/triple-beam": "^1.3.5",
"@types/yargs": "^17.0.33",
"eslint": "^9.12.0",
"rimraf": "^6.0.1",
"typescript": "~5.6.3",
"typescript-eslint": "^8.9.0"
},
"dependencies": {
"dotenv": "^16.4.5",
"fs-extra": "^11.2.0",
"got": "^14.4.3",
"helios-distribution-types": "^1.3.0",
"luxon": "^3.5.0",
"minimatch": "^10.0.1",
"node-stream-zip": "^1.15.0",
"toml": "^3.0.0",
"triple-beam": "^1.4.1",
"ts-json-schema-generator": "^2.3.0",
"winston": "^3.15.0",
"yargs": "^17.7.2"
}
}