base44 0.0.40 → 0.0.41
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 +1027 -3805
- package/dist/cli/index.js.map +1 -1
- package/package.json +86 -89
- package/LICENSE +0 -21
package/package.json
CHANGED
|
@@ -1,91 +1,88 @@
|
|
|
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
|
-
|
|
88
|
-
"engines": {
|
|
89
|
-
"node": ">=20.19.0"
|
|
90
|
-
}
|
|
2
|
+
"name": "base44",
|
|
3
|
+
"version": "0.0.41",
|
|
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
|
+
"lint": "biome check src tests",
|
|
22
|
+
"lint:fix": "biome check --write src tests",
|
|
23
|
+
"test": "vitest run",
|
|
24
|
+
"test:watch": "vitest",
|
|
25
|
+
"build:binaries": "bun run infra/build-binaries.ts",
|
|
26
|
+
"package:binaries": "bun run infra/package-binaries.ts"
|
|
27
|
+
},
|
|
28
|
+
"keywords": [
|
|
29
|
+
"base44",
|
|
30
|
+
"cli",
|
|
31
|
+
"command-line"
|
|
32
|
+
],
|
|
33
|
+
"author": "",
|
|
34
|
+
"license": "MIT",
|
|
35
|
+
"repository": {
|
|
36
|
+
"type": "git",
|
|
37
|
+
"url": "https://github.com/base44/cli"
|
|
38
|
+
},
|
|
39
|
+
"devDependencies": {
|
|
40
|
+
"@biomejs/biome": "^2.0.0",
|
|
41
|
+
"@clack/prompts": "^1.0.1",
|
|
42
|
+
"@seald-io/nedb": "^4.1.2",
|
|
43
|
+
"@types/bun": "^1.2.15",
|
|
44
|
+
"@types/common-tags": "^1.8.4",
|
|
45
|
+
"@types/cors": "^2.8.19",
|
|
46
|
+
"@types/deno": "^2.5.0",
|
|
47
|
+
"@types/ejs": "^3.1.5",
|
|
48
|
+
"@types/express": "^5.0.6",
|
|
49
|
+
"@types/json-schema": "^7.0.15",
|
|
50
|
+
"@types/lodash": "^4.17.24",
|
|
51
|
+
"@types/multer": "^2.0.0",
|
|
52
|
+
"@types/node": "^22.10.5",
|
|
53
|
+
"@vercel/detect-agent": "^1.1.0",
|
|
54
|
+
"chalk": "^5.6.2",
|
|
55
|
+
"chokidar": "^5.0.0",
|
|
56
|
+
"commander": "^12.1.0",
|
|
57
|
+
"common-tags": "^1.8.2",
|
|
58
|
+
"cors": "^2.8.5",
|
|
59
|
+
"dotenv": "17.3.1",
|
|
60
|
+
"ejs": "^3.1.10",
|
|
61
|
+
"execa": "^9.6.1",
|
|
62
|
+
"express": "^5.0.1",
|
|
63
|
+
"front-matter": "^4.0.2",
|
|
64
|
+
"get-port": "^7.1.0",
|
|
65
|
+
"globby": "^16.1.0",
|
|
66
|
+
"http-proxy-middleware": "^3.0.5",
|
|
67
|
+
"json-schema-to-typescript": "^15.0.4",
|
|
68
|
+
"json5": "^2.2.3",
|
|
69
|
+
"ky": "^1.14.2",
|
|
70
|
+
"lodash": "^4.17.23",
|
|
71
|
+
"msw": "^2.12.10",
|
|
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
|
+
"zod": "^4.3.5"
|
|
84
|
+
},
|
|
85
|
+
"engines": {
|
|
86
|
+
"node": ">=20.19.0"
|
|
87
|
+
}
|
|
91
88
|
}
|
package/LICENSE
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2026 base44
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|