forked from pieroproietti/penguins-eggs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.65 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
{
"name": "penguins-eggs",
"description": "Perri's Brewery edition: remaster your system and distribuite it",
"version": "9.1.31",
"author": "Piero Proietti @pieroproietti",
"bin": {
"eggs": "bin/run"
},
"bugs": "https://github.com/pieroproietti/penguins-eggs/issues",
"dependencies": {
"@oclif/core": "^1.9.0",
"@oclif/plugin-autocomplete": "^1.3.0",
"@oclif/plugin-help": "^5.1.12",
"@oclif/plugin-not-found": "^2.3.1",
"@oclif/plugin-version": "^1.0.4",
"@oclif/plugin-warn-if-update-available": "^2.0.4",
"@oclif/test": "^2.1.0",
"axios": "^0.27.2",
"chalk": "^4.1.2",
"ink": "^3.2.0",
"ink-big-text": "^1.2.0",
"ink-gradient": "^2.0.0",
"inquirer": "^8.2.4",
"js-yaml": "^4.1.0",
"mustache": "^4.2.0",
"penguins-oclif": "^3.0.1-1",
"react": "^17.0.2",
"shelljs": "0.8.5",
"tslib": "^2.4.0"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/ink-big-text": "^1.2.1",
"@types/ink-gradient": "^2.0.1",
"@types/inquirer": "^8.2.1",
"@types/js-yaml": "^4.0.5",
"@types/mocha": "^9.1.1",
"@types/mustache": "^4.1.3",
"@types/node": "^17.0.42",
"@types/react": "^18.0.12",
"@types/shelljs": "^0.8.11",
"@typescript-eslint/parser": "^5.27.1",
"chai": "^4.3.6",
"eslint": "^7.32.0",
"eslint-config-oclif": "^4.0.0",
"eslint-config-oclif-typescript": "^1.0.2",
"globby": "^11.1.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"perrisbrewery": "^0.6.3-1",
"ts-node": "^10.8.1",
"typedoc": "^0.22.17",
"typescript": "^4.7.3"
},
"peerDependencies": {
"@typescript-eslint/parser": "^5.0.0",
"typescript": "^4.6.0"
},
"dirname": "eggs",
"engines": {
"node": ">=14.0.0"
},
"files": [
"/addons",
"/assets",
"/bin",
"/conf",
"/lib",
"/manpages",
"mkinitcpio",
"/scripts"
],
"homepage": "https://penguins-eggs.net/",
"keywords": [
"oclif",
"refracta",
"remastersys",
"systemback"
],
"license": "MIT",
"main": "./lib/index.js",
"oclif": {
"bin": "eggs",
"commands": "./lib/commands",
"plugins": [
"@oclif/plugin-autocomplete",
"@oclif/plugin-help",
"@oclif/plugin-not-found",
"@oclif/plugin-warn-if-update-available",
"@oclif/plugin-version"
],
"topicSeparator": " ",
"additionalHelpFlags": [
"-h"
],
"additionalVersionFlags": [
"-v"
]
},
"repository": "https://github.com/pieroproietti/penguins-eggs",
"scripts": {
"build": "tsc -p .",
"deb": "oclif pack:deb && pb deb ./",
"docs": "rm docs -rf && npx typedoc src --out docs",
"lint": "eslint . --ext .ts --config .eslintrc",
"lint-and-fix": "eslint . --ext .ts --fix --config .eslintrc",
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint . --ext .ts --config .eslintrc",
"prepack": "rm lib -rf && tsc -b && oclif manifest && oclif readme",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"tarballs": "oclif pack:tarballs --root=. --targets=linux-x64 --no-xz",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md"
},
"shortName": "eggs",
"types": "lib/index.d.ts"
}