@runfusion/fusion 0.0.1 → 0.0.3

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.
@@ -78,11 +78,11 @@
78
78
  }
79
79
  })();
80
80
  </script>
81
- <script type="module" crossorigin src="/assets/index-bkmXzXw5.js"></script>
81
+ <script type="module" crossorigin src="/assets/index-6vxMhlrC.js"></script>
82
82
  <link rel="modulepreload" crossorigin href="/assets/vendor-react-K0fH_qHe.js">
83
83
  <link rel="modulepreload" crossorigin href="/assets/vendor-xterm-DzcZoU0P.js">
84
84
  <link rel="stylesheet" crossorigin href="/assets/vendor-xterm-LZoznX6r.css">
85
- <link rel="stylesheet" crossorigin href="/assets/index-Dr0THfBG.css">
85
+ <link rel="stylesheet" crossorigin href="/assets/index-DVmHYNJ8.css">
86
86
  </head>
87
87
  <body>
88
88
  <div id="root"></div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@runfusion/fusion",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "license": "MIT",
5
5
  "description": "Fusion CLI: HTTP API server, daemon, dashboard launcher, and task tooling for the Fusion AI coding agent.",
6
6
  "homepage": "https://github.com/Runfusion/Fusion#readme",
@@ -12,7 +12,8 @@
12
12
  "pi-package"
13
13
  ],
14
14
  "bin": {
15
- "fn": "./dist/bin.js"
15
+ "fn": "./dist/bin.js",
16
+ "fusion": "./dist/bin.js"
16
17
  },
17
18
  "pi": {
18
19
  "extensions": [
@@ -35,14 +36,6 @@
35
36
  "skill/**",
36
37
  "README.md"
37
38
  ],
38
- "scripts": {
39
- "dev": "tsx src/bin.ts",
40
- "build": "tsup",
41
- "build:exe": "bun run build.ts",
42
- "build:exe:all": "bun run build.ts --all",
43
- "typecheck": "tsc --noEmit",
44
- "test": "vitest run --silent=passed-only --reporter=dot"
45
- },
46
39
  "dependencies": {
47
40
  "@mariozechner/pi-ai": "^0.62.0",
48
41
  "@mariozechner/pi-coding-agent": "^0.62.0",
@@ -67,9 +60,6 @@
67
60
  }
68
61
  },
69
62
  "devDependencies": {
70
- "@fusion/core": "workspace:*",
71
- "@fusion/dashboard": "workspace:*",
72
- "@fusion/engine": "workspace:*",
73
63
  "@sinclair/typebox": "^0.34.0",
74
64
  "@types/node": "^22.0.0",
75
65
  "@vitest/coverage-v8": "^3.1.0",
@@ -77,10 +67,21 @@
77
67
  "tsx": "^4.19.0",
78
68
  "typescript": "^5.7.0",
79
69
  "vitest": "^3.1.0",
80
- "yaml": "^2.8.3"
70
+ "yaml": "^2.8.3",
71
+ "@fusion/core": "0.1.0",
72
+ "@fusion/dashboard": "0.1.0",
73
+ "@fusion/engine": "0.1.0"
81
74
  },
82
75
  "repository": {
83
76
  "type": "git",
84
77
  "url": "https://github.com/Runfusion/Fusion"
78
+ },
79
+ "scripts": {
80
+ "dev": "tsx src/bin.ts",
81
+ "build": "tsup",
82
+ "build:exe": "bun run build.ts",
83
+ "build:exe:all": "bun run build.ts --all",
84
+ "typecheck": "tsc --noEmit",
85
+ "test": "vitest run --silent=passed-only --reporter=dot"
85
86
  }
86
- }
87
+ }