@zenbujs/core 0.0.12 → 0.0.13
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/LICENSE +11 -0
- package/dist/cli/resolve-config.mjs +0 -0
- 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.
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zenbujs/core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.13",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -89,15 +89,6 @@
|
|
|
89
89
|
"migrations",
|
|
90
90
|
"package.json"
|
|
91
91
|
],
|
|
92
|
-
"scripts": {
|
|
93
|
-
"build": "node --max-old-space-size=8192 ./node_modules/tsdown/dist/run.mjs",
|
|
94
|
-
"prebuild": "pnpm link:types",
|
|
95
|
-
"dev": "tsdown --watch",
|
|
96
|
-
"link:types": "tsx ./src/cli/bin.ts link --types-config ./zenbu-types.config.json --out ./src/registry-generated.ts --augment-out ./types/zenbu-register.ts",
|
|
97
|
-
"db:generate": "node ./dist/cli/bin.mjs db generate --schema src/schema.ts --migrations ./migrations",
|
|
98
|
-
"test": "vitest run",
|
|
99
|
-
"typecheck": "tsc --noEmit -p tsconfig.json"
|
|
100
|
-
},
|
|
101
92
|
"peerDependencies": {
|
|
102
93
|
"electron": "^42.0.0",
|
|
103
94
|
"react": ">=18",
|
|
@@ -111,7 +102,6 @@
|
|
|
111
102
|
"dependencies": {
|
|
112
103
|
"@parcel/watcher": "^2.5.0",
|
|
113
104
|
"@vitejs/plugin-react": "^5.0.0",
|
|
114
|
-
"@zenbujs/hmr": "workspace:*",
|
|
115
105
|
"dugite": "^3.2.1",
|
|
116
106
|
"effect": "^3.21.1",
|
|
117
107
|
"electron-context-menu": "^4.1.2",
|
|
@@ -120,20 +110,30 @@
|
|
|
120
110
|
"semver": "^7.8.0",
|
|
121
111
|
"tsx": "^4.21.0",
|
|
122
112
|
"vite": "^6.0.0",
|
|
123
|
-
"ws": "^8.18.0"
|
|
113
|
+
"ws": "^8.18.0",
|
|
114
|
+
"@zenbujs/hmr": "0.0.2"
|
|
124
115
|
},
|
|
125
116
|
"devDependencies": {
|
|
126
117
|
"@types/node": "^22.0.0",
|
|
127
118
|
"@types/react": "^19.0.0",
|
|
128
119
|
"@types/semver": "^7.7.1",
|
|
129
120
|
"@types/ws": "^8.18.0",
|
|
130
|
-
"@zenbu/advice": "workspace:*",
|
|
131
|
-
"@zenbu/kyju": "workspace:*",
|
|
132
|
-
"@zenbu/zenrpc": "workspace:*",
|
|
133
121
|
"electron": "^42.0.0",
|
|
134
122
|
"tsdown": "^0.21.10",
|
|
135
123
|
"typescript": "^5.4.5",
|
|
136
124
|
"vitest": "^3.2.4",
|
|
137
|
-
"zod": "^4"
|
|
125
|
+
"zod": "^4",
|
|
126
|
+
"@zenbu/advice": "0.0.0",
|
|
127
|
+
"@zenbu/zenrpc": "0.0.0",
|
|
128
|
+
"@zenbu/kyju": "0.0.0"
|
|
129
|
+
},
|
|
130
|
+
"scripts": {
|
|
131
|
+
"build": "node --max-old-space-size=8192 ./node_modules/tsdown/dist/run.mjs",
|
|
132
|
+
"prebuild": "pnpm link:types",
|
|
133
|
+
"dev": "tsdown --watch",
|
|
134
|
+
"link:types": "tsx ./src/cli/bin.ts link --types-config ./zenbu-types.config.json --out ./src/registry-generated.ts --augment-out ./types/zenbu-register.ts",
|
|
135
|
+
"db:generate": "node ./dist/cli/bin.mjs db generate --schema src/schema.ts --migrations ./migrations",
|
|
136
|
+
"test": "vitest run",
|
|
137
|
+
"typecheck": "tsc --noEmit -p tsconfig.json"
|
|
138
138
|
}
|
|
139
|
-
}
|
|
139
|
+
}
|