@zenbujs/core 0.0.2 → 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.
Files changed (2) hide show
  1. package/LICENSE +11 -0
  2. package/package.json +17 -17
package/LICENSE ADDED
@@ -0,0 +1,11 @@
1
+ All Rights Reserved
2
+
3
+ Copyright (c) 2026 Zenbu Labs Inc.
4
+
5
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
6
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
7
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
8
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
9
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
10
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
11
+ THE SOFTWARE.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zenbujs/core",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -77,14 +77,6 @@
77
77
  "migrations",
78
78
  "package.json"
79
79
  ],
80
- "scripts": {
81
- "build": "node --max-old-space-size=8192 ./node_modules/tsdown/dist/run.mjs",
82
- "dev": "tsdown --watch",
83
- "link:types": "node ../zen/dist/bin.mjs link --types-config ./zenbu-types.config.json --registry ./types",
84
- "db:generate": "node ../zen/dist/bin.mjs db generate --schema src/schema.ts --migrations ./migrations",
85
- "typecheck": "tsc --noEmit -p tsconfig.json",
86
- "lint": "eslint . --max-warnings=0"
87
- },
88
80
  "peerDependencies": {
89
81
  "electron": "^42.0.0",
90
82
  "react": ">=18"
@@ -97,7 +89,6 @@
97
89
  "dependencies": {
98
90
  "@parcel/watcher": "^2.5.0",
99
91
  "@vitejs/plugin-react": "^5.0.0",
100
- "@zenbujs/hmr": "workspace:*",
101
92
  "dugite": "^3.2.1",
102
93
  "effect": "^3.21.1",
103
94
  "electron-context-menu": "^4.1.2",
@@ -106,19 +97,28 @@
106
97
  "tsx": "^4.21.0",
107
98
  "vite": "^6.0.0",
108
99
  "ws": "^8.18.0",
109
- "zod": "^4.3.6"
100
+ "zod": "^4.3.6",
101
+ "@zenbujs/hmr": "0.0.1"
110
102
  },
111
103
  "devDependencies": {
112
104
  "@types/node": "^22.0.0",
113
105
  "@types/react": "^19.0.0",
114
106
  "@types/ws": "^8.18.0",
115
- "@zenbu/advice": "workspace:*",
116
- "@zenbu/kyju": "workspace:*",
117
- "@zenbu/lint": "workspace:*",
118
- "@zenbu/zenrpc": "workspace:*",
119
107
  "electron": "^42.0.0",
120
108
  "eslint": "^9.0.0",
121
109
  "tsdown": "^0.21.10",
122
- "typescript": "^5.4.5"
110
+ "typescript": "^5.4.5",
111
+ "@zenbu/kyju": "0.0.0",
112
+ "@zenbu/lint": "0.0.0",
113
+ "@zenbu/advice": "0.0.0",
114
+ "@zenbu/zenrpc": "0.0.0"
115
+ },
116
+ "scripts": {
117
+ "build": "node --max-old-space-size=8192 ./node_modules/tsdown/dist/run.mjs",
118
+ "dev": "tsdown --watch",
119
+ "link:types": "node ../zen/dist/bin.mjs link --types-config ./zenbu-types.config.json --registry ./types",
120
+ "db:generate": "node ../zen/dist/bin.mjs db generate --schema src/schema.ts --migrations ./migrations",
121
+ "typecheck": "tsc --noEmit -p tsconfig.json",
122
+ "lint": "eslint . --max-warnings=0"
123
123
  }
124
- }
124
+ }