This repository was archived by the owner on Dec 15, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.94 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.94 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "ce-dev",
"description": "Local Stack wrapper tool",
"version": "2.0.3",
"author": "Codeenigma",
"bin": "./bin/run.js",
"bugs": "https://github.com/codeenigma/ce-dev/issues",
"homepage": "https://github.com/codeenigma/ce-dev",
"license": "MIT",
"dependencies": {
"@oclif/core": "^4",
"@oclif/plugin-autocomplete": "^3.0.3",
"@oclif/plugin-help": "^6.0.6",
"@oclif/plugin-plugins": "^5",
"@types/inquirer-fuzzy-path": "^2.3.9",
"debug": "^4.3.4",
"inquirer": "^9.2.12",
"inquirer-fuzzy-path": "^2.3.0",
"js-yaml": "^4.1.0",
"open": "^10"
},
"devDependencies": {
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^4",
"@types/inquirer": "^9.0.7",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.9.1",
"eslint": "^8",
"eslint-config-oclif": "^5.0.0",
"eslint-config-oclif-typescript": "^3.0.15",
"eslint-config-prettier": "^9.0.0",
"oclif": "^4",
"renamer": "^5",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"tsx": "^4.16.0",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=18.0.0 <23"
},
"main": "./lib/index.js",
"exports": "./lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "ce-dev",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-autocomplete"
]
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"templates"
],
"keywords": [
"oclif"
],
"scripts": {
"clean": "shx rm -rf dist && shx rm -rf lib",
"build": "shx rm -rf dist && tsc -b",
"lint": "eslint . --ext .ts",
"postpack-oclif": "shx rm -f oclif.manifest.json",
"posttest": "npm run lint",
"prepack-oclif": "shx rm -rf lib && tsc -b && npx oclif manifest && npx oclif readme",
"version": "npx oclif readme && git add README.md",
"renamedist": "npx renamer --chain renamedist.js dist/*"
},
"types": "lib/index.d.ts",
"type": "module"
}