@qumra/cli 2.4.13

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/package.json ADDED
@@ -0,0 +1,87 @@
1
+ {
2
+ "name": "@qumra/cli",
3
+ "version": "2.4.13",
4
+ "description": "Professional CLI tool for Qumra Cloud - Shopify competitor",
5
+ "main": "dist/cli.js",
6
+ "bin": {
7
+ "qumra": "dist/cli.js"
8
+ },
9
+ "scripts": {
10
+ "clean": "rm -rf dist",
11
+ "build": "npm run clean && rollup -c",
12
+ "build:watch": "NODE_OPTIONS='--max-old-space-size=8192' rollup -c -w",
13
+ "dev": "tsx src/main.ts",
14
+ "dev:watch": "tsx watch src/main.ts",
15
+ "start": "node dist/cli.js",
16
+ "cli": "npm run build && node dist/cli.js",
17
+ "link": "npm run build && npm link",
18
+ "unlink": "npm unlink -g @qumra/cli",
19
+ "release:patch": "npm run build && npm version patch && npm publish",
20
+ "release:minor": "npm run build && npm version minor && npm publish",
21
+ "release:major": "npm run build && npm version major && npm publish",
22
+ "prepublishOnly": "npm run build"
23
+ },
24
+ "author": "",
25
+ "license": "MIT",
26
+ "dependencies": {
27
+ "@inquirer/search": "^4.1.0",
28
+ "@nestjs/common": "^11.1.12",
29
+ "@nestjs/core": "^11.1.12",
30
+ "@nestjs/microservices": "^11.1.12",
31
+ "@nestjs/platform-express": "^11.1.12",
32
+ "@nestjs/websockets": "^11.1.12",
33
+ "@types/blessed": "^0.1.27",
34
+ "@types/figlet": "^1.7.0",
35
+ "archiver": "^7.0.1",
36
+ "axios": "^1.10.0",
37
+ "blessed": "^0.1.81",
38
+ "chalk": "^5.4.1",
39
+ "cheerio": "^1.1.2",
40
+ "chokidar": "^4.0.3",
41
+ "class-transformer": "^0.5.1",
42
+ "cli-progress": "^3.12.0",
43
+ "cli-table3": "^0.6.5",
44
+ "cloudflared": "^0.7.1",
45
+ "commander": "^11.0.0",
46
+ "conf": "^14.0.0",
47
+ "express": "^4.18.2",
48
+ "fast-glob": "^3.3.3",
49
+ "figlet": "^1.9.4",
50
+ "form-data": "^4.0.3",
51
+ "graphql": "^16.11.0",
52
+ "graphql-request": "^7.2.0",
53
+ "http-proxy-middleware": "^3.0.5",
54
+ "inquirer": "^12.7.0",
55
+ "luxon": "^3.7.2",
56
+ "nest-commander": "^3.20.1",
57
+ "open": "^10.2.0",
58
+ "ora": "^8.2.0",
59
+ "progress-stream": "^2.0.0",
60
+ "reflect-metadata": "^0.2.2",
61
+ "rxjs": "^7.8.2",
62
+ "socket.io": "^4.8.1",
63
+ "socket.io-client": "^4.8.1"
64
+ },
65
+ "devDependencies": {
66
+ "@rollup/plugin-commonjs": "^25.0.0",
67
+ "@rollup/plugin-json": "^6.1.0",
68
+ "@rollup/plugin-node-resolve": "^15.0.0",
69
+ "@rollup/plugin-terser": "^0.4.4",
70
+ "@rollup/plugin-typescript": "^11.0.0",
71
+ "@types/archiver": "^7.0.0",
72
+ "@types/cli-progress": "^3.11.6",
73
+ "@types/conf": "^2.1.0",
74
+ "@types/express": "^4.17.21",
75
+ "@types/localtunnel": "^2.0.4",
76
+ "@types/luxon": "^3.7.1",
77
+ "@types/node": "^24.0.10",
78
+ "@types/open": "^6.0.0",
79
+ "@types/progress-stream": "^2.0.5",
80
+ "rollup": "^4.55.1",
81
+ "rollup-plugin-obfuscator": "^1.0.5",
82
+ "terser": "^5.0.0",
83
+ "ts-node": "^10.9.2",
84
+ "tsx": "^4.21.0",
85
+ "typescript": "^5.0.0"
86
+ }
87
+ }
@@ -0,0 +1,20 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ES2019",
4
+ "module": "CommonJS",
5
+ "moduleResolution": "Node",
6
+ "outDir": "dist",
7
+ "rootDir": "src",
8
+ "esModuleInterop": true,
9
+ "forceConsistentCasingInFileNames": true,
10
+ "strict": true,
11
+ "skipLibCheck": true,
12
+ "allowSyntheticDefaultImports": true,
13
+ "experimentalDecorators": true,
14
+ "emitDecoratorMetadata": true
15
+ },
16
+ "include": ["src/**/*"],
17
+ "ts-node": {
18
+ "esm": false
19
+ }
20
+ }