@8medusa/cli 2.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cli.js +16 -0
- package/dist/commands/new.d.ts +5 -0
- package/dist/commands/new.d.ts.map +1 -0
- package/dist/commands/new.js +528 -0
- package/dist/commands/new.js.map +1 -0
- package/dist/create-cli.d.ts +3 -0
- package/dist/create-cli.d.ts.map +1 -0
- package/dist/create-cli.js +533 -0
- package/dist/create-cli.js.map +1 -0
- package/dist/did-you-mean.d.ts +2 -0
- package/dist/did-you-mean.d.ts.map +1 -0
- package/dist/did-you-mean.js +23 -0
- package/dist/did-you-mean.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +34 -0
- package/dist/index.js.map +1 -0
- package/dist/reporter/index.d.ts +115 -0
- package/dist/reporter/index.d.ts.map +1 -0
- package/dist/reporter/index.js +364 -0
- package/dist/reporter/index.js.map +1 -0
- package/dist/reporter/panic-handler.d.ts +16 -0
- package/dist/reporter/panic-handler.d.ts.map +1 -0
- package/dist/reporter/panic-handler.js +32 -0
- package/dist/reporter/panic-handler.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/dist/util/clear-project.d.ts +2 -0
- package/dist/util/clear-project.d.ts.map +1 -0
- package/dist/util/clear-project.js +23 -0
- package/dist/util/clear-project.js.map +1 -0
- package/dist/util/package-manager.d.ts +3 -0
- package/dist/util/package-manager.d.ts.map +1 -0
- package/dist/util/package-manager.js +21 -0
- package/dist/util/package-manager.js.map +1 -0
- package/package.json +83 -0
package/package.json
ADDED
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@8medusa/cli",
|
|
3
|
+
"version": "2.7.0",
|
|
4
|
+
"description": "Command Line interface for Medusa Commerce",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"medusa": "cli.js"
|
|
8
|
+
},
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://github.com/medusajs/medusa",
|
|
12
|
+
"directory": "packages/cli/medusa-cli"
|
|
13
|
+
},
|
|
14
|
+
"publishConfig": {
|
|
15
|
+
"access": "public"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"cli.js",
|
|
19
|
+
"dist",
|
|
20
|
+
"!dist/**/__tests__",
|
|
21
|
+
"!dist/**/__mocks__",
|
|
22
|
+
"!dist/**/__fixtures__"
|
|
23
|
+
],
|
|
24
|
+
"engines": {
|
|
25
|
+
"node": ">=20"
|
|
26
|
+
},
|
|
27
|
+
"scripts": {
|
|
28
|
+
"test": "jest --passWithNoTests src",
|
|
29
|
+
"build": "rimraf dist && tsc --build",
|
|
30
|
+
"watch": "tsc --watch"
|
|
31
|
+
},
|
|
32
|
+
"author": "Sebastian Rindom",
|
|
33
|
+
"license": "MIT",
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@mikro-orm/core": "6.4.3",
|
|
36
|
+
"@mikro-orm/knex": "6.4.3",
|
|
37
|
+
"@mikro-orm/migrations": "6.4.3",
|
|
38
|
+
"@mikro-orm/postgresql": "6.4.3",
|
|
39
|
+
"@swc/core": "^1.7.28",
|
|
40
|
+
"@swc/jest": "^0.2.36",
|
|
41
|
+
"@types/yargs": "^15.0.15",
|
|
42
|
+
"awilix": "^8.0.1",
|
|
43
|
+
"jest": "^29.7.0",
|
|
44
|
+
"pg": "^8.13.0",
|
|
45
|
+
"rimraf": "^5.0.1",
|
|
46
|
+
"typescript": "^5.6.2"
|
|
47
|
+
},
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"@8medusa/telemetry": "2.7.0",
|
|
50
|
+
"@8medusa/utils": "2.7.0",
|
|
51
|
+
"@types/express": "^4.17.17",
|
|
52
|
+
"chalk": "^4.0.0",
|
|
53
|
+
"configstore": "5.0.1",
|
|
54
|
+
"dotenv": "^16.4.5",
|
|
55
|
+
"execa": "^5.1.1",
|
|
56
|
+
"express": "^4.21.0",
|
|
57
|
+
"fs-exists-cached": "^1.0.0",
|
|
58
|
+
"fs-extra": "^10.0.0",
|
|
59
|
+
"glob": "^10.3.10",
|
|
60
|
+
"hosted-git-info": "^4.0.2",
|
|
61
|
+
"inquirer": "^8.0.0",
|
|
62
|
+
"is-valid-path": "^0.1.1",
|
|
63
|
+
"meant": "^1.0.3",
|
|
64
|
+
"ora": "^5.4.1",
|
|
65
|
+
"pg": "^8.11.3",
|
|
66
|
+
"pg-god": "^1.0.12",
|
|
67
|
+
"prompts": "^2.4.2",
|
|
68
|
+
"resolve-cwd": "^3.0.0",
|
|
69
|
+
"stack-trace": "^0.0.10",
|
|
70
|
+
"ulid": "^2.3.0",
|
|
71
|
+
"winston": "^3.8.2",
|
|
72
|
+
"yargs": "^15.3.1"
|
|
73
|
+
},
|
|
74
|
+
"peerDependencies": {
|
|
75
|
+
"@mikro-orm/core": "6.4.3",
|
|
76
|
+
"@mikro-orm/knex": "6.4.3",
|
|
77
|
+
"@mikro-orm/migrations": "6.4.3",
|
|
78
|
+
"@mikro-orm/postgresql": "6.4.3",
|
|
79
|
+
"awilix": "^8.0.1",
|
|
80
|
+
"pg": "^8.13.0"
|
|
81
|
+
},
|
|
82
|
+
"gitHead": "81a7ff73d012fda722f6e9ef0bd9ba0232d37808"
|
|
83
|
+
}
|