-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
121 lines (121 loc) · 3.62 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "penguins-eggs",
"shortName": "eggs",
"description": "A remaster system tool, compatible with Arch, Debian, Devuan, Ubuntu and others",
"version": "10.0.56",
"author": "Piero Proietti",
"bin": {
"eggs": "./bin/run.js"
},
"bugs": "https://github.com/pieroproietti/penguins-eggs/issues",
"dependencies": {
"@oclif/core": "^4.1.0",
"@oclif/plugin-autocomplete": "^3.2.14",
"@oclif/plugin-help": "^6.2.19",
"@oclif/plugin-version": "^2.2.18",
"ansis": "^3.4.0",
"axios": "^1.7.9",
"chalk": "^5.4.0",
"cli-cursor": "^4.0.0",
"debug": "^4.4.0",
"ink": "^5.0.1",
"ink-progress-bar": "^3.0.0",
"ink-spinner": "^5.0.0",
"inquirer": "^9.3.6",
"js-yaml": "^4.1.0",
"mustache": "^4.2.0",
"netmask": "^2.0.2",
"node-proxy-dhcpd": "0.1.2",
"node-static": "^0.7.11",
"react": "^18.3.1",
"shelljs": "^0.8.5",
"systeminformation": "^5.23.14",
"tftp": "^0.1.2"
},
"devDependencies": {
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^4.1.4",
"@types/chai": "^4.3.19",
"@types/debug": "^4.1.12",
"@types/inquirer": "^9.0.7",
"@types/js-yaml": "^4.0.9",
"@types/mocha": "^10.0.8",
"@types/mustache": "^4.2.5",
"@types/netmask": "^2.0.5",
"@types/node": "^22.10.2",
"@types/node-static": "^0.7.11",
"@types/react": "^18.3.12",
"@types/shelljs": "^0.8.15",
"chai": "^5.1.2",
"eslint": "^8.57.0",
"eslint-config-oclif": "^5.2.1",
"eslint-config-oclif-typescript": "^3.1.13",
"eslint-config-prettier": "^9.1.0",
"mocha": "^10.8.1",
"oclif": "^4.17.0",
"perrisbrewery": "^10.0.2",
"prettier": "^3.4.2",
"shx": "^0.3.4",
"ts-node": "10.9.2",
"typescript": "^5.5.4"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
".oclif.manifest.json",
"/addons",
"/assets",
"/bin",
"/conf",
"/dist",
"/dracut",
"/eui",
"/ipxe",
"/manpages",
"/mkinitcpio",
"/mkinitfs",
"/scripts",
"/syslinux"
],
"homepage": "https://penguins-eggs.net",
"keywords": [
"oclif",
"remaster",
"system"
],
"license": "MIT",
"main": "dist/index.js",
"type": "module",
"oclif": {
"bin": "eggs",
"dirname": "penguins-eggs",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-autocomplete",
"@oclif/plugin-version"
],
"topicSeparator": " ",
"topics": {
"hello": {
"description": "Say hello to the world and others"
}
}
},
"repository": "pieroproietti/penguins-eggs",
"scripts": {
"_postpack": "shx rm -f oclif.manifest.json",
"_prepack": "oclif manifest && ocl -t linux-x64",
"build": "shx rm -rf dist && tsc -b",
"deb": "tsc -p . && oclif manifest && pb deb",
"format": "prettier --write \"+(src|test)/**/*.+(ts|js|json)\"",
"lint": "eslint . --ext .ts",
"manifest": "oclif manifest",
"posttest": "pnpm run lint",
"tarballs": "shx rm -rf dist &&tsc -p . && oclif manifest && oclif pack tarballs -t linux-x64 --no-xz -r .",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md"
},
"types": "dist/index.d.ts"
}