jixo 1.0.0 → 1.1.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.
Files changed (2) hide show
  1. package/package.json +22 -18
  2. package/bundle/index.cjs +0 -28
package/package.json CHANGED
@@ -1,8 +1,7 @@
1
1
  {
2
2
  "name": "jixo",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "The AI-Driven Development Foundation for Automated Software Engineering",
5
- "main": "index.js",
6
5
  "type": "module",
7
6
  "bin": "./bundle/index.cjs",
8
7
  "exports": {
@@ -22,43 +21,48 @@
22
21
  },
23
22
  "license": "MIT",
24
23
  "dependencies": {
25
- "@jixo/cli": "^0.20.0"
24
+ "@jixo/cli": "^0.21.0"
26
25
  },
27
26
  "devDependencies": {
28
- "@gaubee/node": "^0.2.4",
29
- "@gaubee/nodekit": "^0.10.2",
30
- "@gaubee/util": "^0.34.1",
27
+ "@gaubee/node": "^0.4.0",
28
+ "@gaubee/nodekit": "^0.12.0",
29
+ "@gaubee/util": "^0.34.2",
31
30
  "@parcel/watcher": "^2.5.1",
32
31
  "@std/cli": "npm:@jsr/std__cli@^1.0.17",
33
32
  "@std/fmt": "npm:@jsr/std__fmt@^1.0.8",
34
- "@types/node": "^24.0.12",
35
- "ai": "^4.3.16",
36
- "esbuild": "^0.25.6",
33
+ "@types/node": "^24.1.0",
34
+ "ai": "^4.3.19",
35
+ "esbuild": "^0.25.8",
37
36
  "globby": "^14.1.0",
38
37
  "import-meta-ponyfill": "^3.2.2",
39
- "mastra": "^0.10.11",
38
+ "mastra": "^0.10.15",
40
39
  "prettier": "^3.6.2",
41
- "prettier-plugin-organize-imports": "^4.1.0",
42
- "rolldown": "1.0.0-beta.24",
40
+ "prettier-plugin-organize-imports": "^4.2.0",
41
+ "rolldown": "1.0.0-beta.29",
43
42
  "signal-polyfill": "^0.2.2",
44
43
  "signal-utils": "^0.21.1",
45
44
  "ts-pattern": "^5.7.1",
45
+ "tsdown": "^0.13.0",
46
46
  "typescript": "^5.8.3",
47
- "@jixo/mcp-fs": "^1.6.0",
48
- "@jixo/dev": "^1.11.4",
47
+ "vitest": "^3.2.4",
48
+ "@jixo/dev": "^1.12.0",
49
49
  "@jixo/mcp-git": "^1.4.2",
50
+ "@jixo/mcp-fs": "^1.6.0",
50
51
  "@jixo/mcp-pnpm": "^1.4.0"
51
52
  },
52
53
  "scripts": {
53
54
  "ci": "echo \"NO CI\"",
54
55
  "test": "pnpm jixo --help",
55
56
  "pub": "pnpm publish --access public --no-git-checks -r",
56
- "bundle:docs": "cd docs && pnpm build",
57
- "build": "tsc --build",
57
+ "ts": "tsc --build --noEmit",
58
+ "build": "pnpm run -w '/^(bundle)$/'",
59
+ "bundle": "tsdown",
60
+ "build:docs": "pnpm --parallel --filter='jixo-docs' run build",
61
+ "build:mcp": "pnpm -r --parallel --filter='@jixo/mcp-*' run /^b\\:/",
62
+ "build:cli": "pnpm -r --parallel --filter='./packages/{cli,dev}' run /^b\\:/",
58
63
  "build:all": "pnpm -r --include-workspace-root --parallel run build",
59
- "dev": "tsc --build --watch",
60
64
  "clean": "node scripts/clean.ts",
61
- "bundle:json": "cd packages/cli && pnpm gen-prompts",
65
+ "//bundle:json": "cd packages/cli && pnpm gen-prompts",
62
66
  "bundle:js": "esbuild ./index.ts --format=cjs --outfile=./bundle/index.cjs --platform=node",
63
67
  "G": "pnpm jixo-gen-prompt",
64
68
  "A": "pnpm jixo-apply-ai-response",
package/bundle/index.cjs DELETED
@@ -1,28 +0,0 @@
1
- var __defProp = Object.defineProperty;
2
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
- var __getOwnPropNames = Object.getOwnPropertyNames;
4
- var __hasOwnProp = Object.prototype.hasOwnProperty;
5
- var __export = (target, all) => {
6
- for (var name in all)
7
- __defProp(target, name, { get: all[name], enumerable: true });
8
- };
9
- var __copyProps = (to, from, except, desc) => {
10
- if (from && typeof from === "object" || typeof from === "function") {
11
- for (let key of __getOwnPropNames(from))
12
- if (!__hasOwnProp.call(to, key) && key !== except)
13
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
- }
15
- return to;
16
- };
17
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
18
- var index_exports = {};
19
- __export(index_exports, {
20
- defineConfig: () => import_cli2.defineConfig
21
- });
22
- module.exports = __toCommonJS(index_exports);
23
- var import_cli = require("@jixo/cli");
24
- var import_cli2 = require("@jixo/cli");
25
- // Annotate the CommonJS export names for ESM import in node:
26
- 0 && (module.exports = {
27
- defineConfig
28
- });