@tarout/cli 0.1.2 → 0.1.4

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.
Files changed (2) hide show
  1. package/dist/index.js +1921 -1183
  2. package/package.json +62 -60
package/package.json CHANGED
@@ -1,62 +1,64 @@
1
1
  {
2
- "name": "@tarout/cli",
3
- "version": "0.1.2",
4
- "description": "Tarout PaaS Command Line Interface",
5
- "type": "module",
6
- "bin": {
7
- "tarout": "./bin/tarout"
8
- },
9
- "main": "./dist/index.js",
10
- "types": "./dist/index.d.ts",
11
- "files": [
12
- "bin",
13
- "dist"
14
- ],
15
- "scripts": {
16
- "build": "tsup src/index.ts --format esm --dts --clean",
17
- "dev": "tsup src/index.ts --format esm --watch",
18
- "typecheck": "tsc --noEmit",
19
- "lint": "biome check src/",
20
- "start": "node dist/index.js",
21
- "prepublishOnly": "bun run build"
22
- },
23
- "dependencies": {
24
- "@trpc/client": "^10.45.2",
25
- "@trpc/server": "^10.45.2",
26
- "chalk": "^5.3.0",
27
- "cli-table3": "^0.6.5",
28
- "commander": "^12.1.0",
29
- "conf": "^13.0.1",
30
- "express": "^4.21.0",
31
- "inquirer": "^12.0.0",
32
- "open": "^10.1.0",
33
- "ora": "^8.1.1",
34
- "superjson": "^2.2.2"
35
- },
36
- "devDependencies": {
37
- "@types/express": "^4.17.21",
38
- "@types/node": "^22.0.0",
39
- "tsup": "^8.3.0",
40
- "typescript": "^5.6.0"
41
- },
42
- "engines": {
43
- "node": ">=18.0.0"
44
- },
45
- "repository": {
46
- "type": "git",
47
- "url": "https://github.com/tarout/platform"
48
- },
49
- "bugs": {
50
- "url": "https://github.com/tarout/platform/issues"
51
- },
52
- "homepage": "https://tarout.sa",
53
- "keywords": [
54
- "tarout",
55
- "paas",
56
- "cloud",
57
- "deployment",
58
- "cli"
59
- ],
60
- "author": "Tarout",
61
- "license": "MIT"
2
+ "name": "@tarout/cli",
3
+ "version": "0.1.4",
4
+ "description": "Tarout PaaS Command Line Interface",
5
+ "type": "module",
6
+ "bin": {
7
+ "tarout": "./bin/tarout"
8
+ },
9
+ "main": "./dist/index.js",
10
+ "types": "./dist/index.d.ts",
11
+ "files": [
12
+ "bin",
13
+ "dist"
14
+ ],
15
+ "scripts": {
16
+ "build": "tsup src/index.ts --format esm --dts --clean",
17
+ "dev": "tsup src/index.ts --format esm --watch",
18
+ "typecheck": "tsc --noEmit",
19
+ "lint": "biome check src/",
20
+ "start": "node dist/index.js",
21
+ "prepublishOnly": "bun run build"
22
+ },
23
+ "dependencies": {
24
+ "@trpc/client": "^10.45.2",
25
+ "@trpc/server": "^10.45.2",
26
+ "chalk": "^5.3.0",
27
+ "cli-table3": "^0.6.5",
28
+ "commander": "^12.1.0",
29
+ "conf": "^13.0.1",
30
+ "express": "^4.21.0",
31
+ "inquirer": "^12.0.0",
32
+ "open": "^10.1.0",
33
+ "ora": "^8.1.1",
34
+ "superjson": "^2.2.2",
35
+ "ws": "^8.16.0"
36
+ },
37
+ "devDependencies": {
38
+ "@types/express": "^4.17.21",
39
+ "@types/node": "^22.0.0",
40
+ "@types/ws": "^8.5.10",
41
+ "tsup": "^8.3.0",
42
+ "typescript": "^5.6.0"
43
+ },
44
+ "engines": {
45
+ "node": ">=18.0.0"
46
+ },
47
+ "repository": {
48
+ "type": "git",
49
+ "url": "https://github.com/tarout/platform"
50
+ },
51
+ "bugs": {
52
+ "url": "https://github.com/tarout/platform/issues"
53
+ },
54
+ "homepage": "https://tarout.sa",
55
+ "keywords": [
56
+ "tarout",
57
+ "paas",
58
+ "cloud",
59
+ "deployment",
60
+ "cli"
61
+ ],
62
+ "author": "Tarout",
63
+ "license": "MIT"
62
64
  }