@base44-preview/cli 0.0.41-pr.382.359de3c → 0.0.41-pr.382.5f81bb2
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/index.js +13224 -6137
- package/dist/cli/index.js.map +86 -12
- package/package.json +87 -86
package/package.json
CHANGED
|
@@ -1,88 +1,89 @@
|
|
|
1
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
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
2
|
+
"name": "@base44-preview/cli",
|
|
3
|
+
"version": "0.0.41-pr.382.5f81bb2",
|
|
4
|
+
"description": "Base44 CLI - Unified interface for managing Base44 applications",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"base44": "./bin/run.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist/cli",
|
|
11
|
+
"dist/assets",
|
|
12
|
+
"bin"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "bun run clean && mkdir -p dist/assets && cp -r templates dist/assets/ && bun run infra/build.ts",
|
|
16
|
+
"build:watch": "bun run clean && mkdir -p dist/assets && cp -r templates dist/assets/ && bun run infra/build.ts --watch",
|
|
17
|
+
"typecheck": "tsc --noEmit",
|
|
18
|
+
"dev": "./bin/dev.ts",
|
|
19
|
+
"start": "./bin/run.js",
|
|
20
|
+
"clean": "rm -rf dist && mkdir -p dist",
|
|
21
|
+
"test": "vitest run",
|
|
22
|
+
"test:npm": "CLI_TEST_RUNNER=npm vitest run",
|
|
23
|
+
"test:binary": "CLI_TEST_RUNNER=binary vitest run",
|
|
24
|
+
"test:watch": "vitest",
|
|
25
|
+
"lint": "cd ../.. && bun run lint",
|
|
26
|
+
"lint:fix": "cd ../.. && bun run lint:fix",
|
|
27
|
+
"build:binaries": "bun run infra/build-binaries.ts",
|
|
28
|
+
"package:binaries": "bun run infra/package-binaries.ts"
|
|
29
|
+
},
|
|
30
|
+
"keywords": [
|
|
31
|
+
"base44",
|
|
32
|
+
"cli",
|
|
33
|
+
"command-line"
|
|
34
|
+
],
|
|
35
|
+
"author": "",
|
|
36
|
+
"license": "MIT",
|
|
37
|
+
"repository": {
|
|
38
|
+
"type": "git",
|
|
39
|
+
"url": "https://github.com/base44/cli"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@clack/prompts": "^1.0.1",
|
|
43
|
+
"@seald-io/nedb": "^4.1.2",
|
|
44
|
+
"@types/bun": "^1.2.15",
|
|
45
|
+
"@types/common-tags": "^1.8.4",
|
|
46
|
+
"@types/cors": "^2.8.19",
|
|
47
|
+
"@types/deno": "^2.5.0",
|
|
48
|
+
"@types/ejs": "^3.1.5",
|
|
49
|
+
"@types/express": "^5.0.6",
|
|
50
|
+
"@types/json-schema": "^7.0.15",
|
|
51
|
+
"@types/lodash": "^4.17.24",
|
|
52
|
+
"@types/multer": "^2.0.0",
|
|
53
|
+
"@types/node": "^22.10.5",
|
|
54
|
+
"@vercel/detect-agent": "^1.1.0",
|
|
55
|
+
"chalk": "^5.6.2",
|
|
56
|
+
"chokidar": "^5.0.0",
|
|
57
|
+
"commander": "^12.1.0",
|
|
58
|
+
"common-tags": "^1.8.2",
|
|
59
|
+
"cors": "^2.8.5",
|
|
60
|
+
"dotenv": "17.3.1",
|
|
61
|
+
"ejs": "^3.1.10",
|
|
62
|
+
"execa": "^9.6.1",
|
|
63
|
+
"express": "^5.0.1",
|
|
64
|
+
"front-matter": "^4.0.2",
|
|
65
|
+
"get-port": "^7.1.0",
|
|
66
|
+
"globby": "^16.1.0",
|
|
67
|
+
"http-proxy-middleware": "^3.0.5",
|
|
68
|
+
"json-schema-to-typescript": "^15.0.4",
|
|
69
|
+
"json5": "^2.2.3",
|
|
70
|
+
"ky": "^1.14.2",
|
|
71
|
+
"lodash": "^4.17.23",
|
|
72
|
+
"multer": "^2.0.0",
|
|
73
|
+
"nanoid": "^5.1.6",
|
|
74
|
+
"open": "^11.0.0",
|
|
75
|
+
"p-wait-for": "^6.0.0",
|
|
76
|
+
"posthog-node": "5.21.2",
|
|
77
|
+
"socket.io": "^4.8.3",
|
|
78
|
+
"strip-ansi": "^7.1.2",
|
|
79
|
+
"tar": "^7.5.4",
|
|
80
|
+
"tmp-promise": "^3.0.3",
|
|
81
|
+
"typescript": "^5.7.2",
|
|
82
|
+
"vitest": "^4.0.16",
|
|
83
|
+
"yaml": "^2.8.2",
|
|
84
|
+
"zod": "^4.3.5"
|
|
85
|
+
},
|
|
86
|
+
"engines": {
|
|
87
|
+
"node": ">=20.19.0"
|
|
88
|
+
}
|
|
88
89
|
}
|