qumra-cli 1.1.64 → 2.0.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/dist/cli.js +52 -0
- package/package.json +40 -58
- package/tsconfig.dev.json +18 -0
- package/build/cli.cjs +0 -390
- package/build/cli.cjs.map +0 -1
package/package.json
CHANGED
|
@@ -1,68 +1,50 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "qumra-cli",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "Modular CLI tool for Qumra Cloud using TypeScript and Commander.",
|
|
5
|
+
"main": "dist/cli.js",
|
|
5
6
|
"bin": {
|
|
6
|
-
"qumra": "
|
|
7
|
+
"qumra": "dist/cli.js"
|
|
7
8
|
},
|
|
8
|
-
"type": "module",
|
|
9
9
|
"scripts": {
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
|
|
14
|
-
|
|
10
|
+
"build": "rollup -c -w",
|
|
11
|
+
"dev": "ts-node -P tsconfig.dev.json src/cli.ts",
|
|
12
|
+
"start": "node dist/cli.js"
|
|
13
|
+
},
|
|
14
|
+
"author": "",
|
|
15
|
+
"license": "MIT",
|
|
16
|
+
"dependencies": {
|
|
17
|
+
"axios": "^1.10.0",
|
|
18
|
+
"chalk": "^5.4.1",
|
|
19
|
+
"chokidar": "^4.0.3",
|
|
20
|
+
"cli-progress": "^3.12.0",
|
|
21
|
+
"commander": "^11.0.0",
|
|
22
|
+
"conf": "^14.0.0",
|
|
23
|
+
"express": "^4.18.2",
|
|
24
|
+
"fast-glob": "^3.3.3",
|
|
25
|
+
"form-data": "^4.0.3",
|
|
26
|
+
"graphql": "^16.11.0",
|
|
27
|
+
"graphql-request": "^7.2.0",
|
|
28
|
+
"inquirer": "^12.7.0",
|
|
29
|
+
"ora": "^8.2.0",
|
|
30
|
+
"progress-stream": "^2.0.0",
|
|
31
|
+
"qumra-engine": "^2.0.25",
|
|
32
|
+
"socket.io": "^4.8.1"
|
|
15
33
|
},
|
|
16
|
-
"keywords": [
|
|
17
|
-
"qumra-cli"
|
|
18
|
-
],
|
|
19
|
-
"files": [
|
|
20
|
-
"build/"
|
|
21
|
-
],
|
|
22
|
-
"author": "abdalstar",
|
|
23
|
-
"license": "ISC",
|
|
24
34
|
"devDependencies": {
|
|
25
|
-
"@
|
|
26
|
-
"@babel/plugin-transform-modules-commonjs": "^7.24.8",
|
|
27
|
-
"@babel/preset-env": "^7.25.4",
|
|
28
|
-
"@rollup/plugin-commonjs": "^26.0.1",
|
|
35
|
+
"@rollup/plugin-commonjs": "^25.0.0",
|
|
29
36
|
"@rollup/plugin-json": "^6.1.0",
|
|
30
|
-
"@rollup/plugin-node-resolve": "^15.
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"url-loader": "^4.1.1",
|
|
43
|
-
"utf-8-validate": "^6.0.4",
|
|
44
|
-
"webpack-cli": "^5.1.4",
|
|
45
|
-
"webpack-node-externals": "^3.0.0",
|
|
46
|
-
"webpack-shell-plugin-next": "^2.3.2"
|
|
47
|
-
},
|
|
48
|
-
"dependencies": {
|
|
49
|
-
"archiver": "^7.0.1",
|
|
50
|
-
"axios": "^1.7.6",
|
|
51
|
-
"chalk": "^4.1.2",
|
|
52
|
-
"chokidar": "^3.6.0",
|
|
53
|
-
"commander": "^12.1.0",
|
|
54
|
-
"conf": "^13.0.1",
|
|
55
|
-
"cookie-parser": "^1.4.6",
|
|
56
|
-
"copy-webpack-plugin": "^12.0.2",
|
|
57
|
-
"figlet": "^1.7.0",
|
|
58
|
-
"get-port": "^7.1.0",
|
|
59
|
-
"inquirer": "^10.0.1",
|
|
60
|
-
"qumra-engine": "^1.0.120",
|
|
61
|
-
"request": "^2.88.2",
|
|
62
|
-
"rollup": "^3.29.5",
|
|
63
|
-
"rollup-plugin-node-builtins": "^2.1.2",
|
|
64
|
-
"save-dev": "^0.0.1-security",
|
|
65
|
-
"socket.io": "^4.7.5",
|
|
66
|
-
"yamlparser": "^0.0.2"
|
|
37
|
+
"@rollup/plugin-node-resolve": "^15.0.0",
|
|
38
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
39
|
+
"@rollup/plugin-typescript": "^11.0.0",
|
|
40
|
+
"@types/cli-progress": "^3.11.6",
|
|
41
|
+
"@types/express": "^4.17.21",
|
|
42
|
+
"@types/node": "^24.0.10",
|
|
43
|
+
"@types/progress-stream": "^2.0.5",
|
|
44
|
+
"rollup": "^4.0.0",
|
|
45
|
+
"rollup-plugin-obfuscator": "^1.0.5",
|
|
46
|
+
"terser": "^5.0.0",
|
|
47
|
+
"ts-node": "^10.9.2",
|
|
48
|
+
"typescript": "^5.0.0"
|
|
67
49
|
}
|
|
68
50
|
}
|
|
@@ -0,0 +1,18 @@
|
|
|
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
|
+
},
|
|
14
|
+
"include": ["src/**/*"],
|
|
15
|
+
"ts-node": {
|
|
16
|
+
"esm": false
|
|
17
|
+
}
|
|
18
|
+
}
|