base44 0.0.27 → 0.0.29

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.
@@ -18,5 +18,6 @@ dist
18
18
  .DS_Store
19
19
  *.swp
20
20
 
21
- # Base44 App Config
21
+ # Base44
22
22
  .app.json*
23
+ .types/
@@ -6,5 +6,6 @@ outputFileName: .gitignore
6
6
  .env.*
7
7
  *.local
8
8
 
9
- # Base44 App Config
9
+ # Base44
10
10
  .app.json*
11
+ .types/
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "base44",
3
- "version": "0.0.27",
3
+ "version": "0.0.29",
4
4
  "description": "Base44 CLI - Unified interface for managing Base44 applications",
5
5
  "type": "module",
6
6
  "bin": {
@@ -11,12 +11,14 @@
11
11
  "bin"
12
12
  ],
13
13
  "scripts": {
14
- "build": "tsdown",
14
+ "build": "bun run clean && cp -r templates dist/ && bun run infra/build.ts",
15
+ "build:watch": "bun run clean && cp -r templates dist/ && bun run infra/build.ts --watch",
15
16
  "typecheck": "tsc --noEmit",
16
- "dev": "./bin/dev.js",
17
+ "dev": "./bin/dev.ts",
17
18
  "start": "./bin/run.js",
18
- "clean": "rm -rf dist",
19
- "lint": "eslint src tests",
19
+ "clean": "rm -rf dist && mkdir -p dist",
20
+ "lint": "biome check src tests",
21
+ "lint:fix": "biome check --write src tests",
20
22
  "test": "vitest run",
21
23
  "test:watch": "vitest"
22
24
  },
@@ -32,24 +34,24 @@
32
34
  "url": "https://github.com/base44/cli"
33
35
  },
34
36
  "devDependencies": {
37
+ "@biomejs/biome": "^2.0.0",
35
38
  "@clack/prompts": "^0.11.0",
36
- "@stylistic/eslint-plugin": "^5.6.1",
39
+ "@types/bun": "^1.2.15",
40
+ "@types/common-tags": "^1.8.4",
37
41
  "@types/ejs": "^3.1.5",
42
+ "@types/json-schema": "^7.0.15",
38
43
  "@types/lodash.kebabcase": "^4.1.9",
39
44
  "@types/node": "^22.10.5",
40
45
  "@types/tar": "^6.1.13",
41
- "@typescript-eslint/eslint-plugin": "^8.51.0",
42
- "@typescript-eslint/parser": "^8.51.0",
43
46
  "@vercel/detect-agent": "^1.1.0",
44
47
  "chalk": "^5.6.2",
45
48
  "commander": "^12.1.0",
49
+ "common-tags": "^1.8.2",
46
50
  "ejs": "^3.1.10",
47
- "eslint": "^9.39.2",
48
- "eslint-plugin-import": "^2.32.0",
49
- "eslint-plugin-unicorn": "^62.0.0",
50
51
  "execa": "^9.6.1",
51
52
  "front-matter": "^4.0.2",
52
53
  "globby": "^16.1.0",
54
+ "json-schema-to-typescript": "^15.0.4",
53
55
  "json5": "^2.2.3",
54
56
  "ky": "^1.14.2",
55
57
  "lodash.kebabcase": "^4.1.1",
@@ -61,17 +63,11 @@
61
63
  "strip-ansi": "^7.1.2",
62
64
  "tar": "^7.5.4",
63
65
  "tmp-promise": "^3.0.3",
64
- "tsdown": "^0.12.4",
65
- "tsx": "^4.19.2",
66
66
  "typescript": "^5.7.2",
67
- "typescript-eslint": "^8.52.0",
68
67
  "vitest": "^4.0.16",
69
68
  "zod": "^4.3.5"
70
69
  },
71
70
  "engines": {
72
71
  "node": ">=20.19.0"
73
- },
74
- "optionalDependencies": {
75
- "@rollup/rollup-linux-x64-gnu": "^4.56.0"
76
72
  }
77
73
  }