Initial commit

This commit is contained in:
Devin Zuczek
2026-06-08 18:23:40 -04:00
commit 8e644a5c20
141 changed files with 21414 additions and 0 deletions
@@ -0,0 +1,5 @@
# @repo/workspace-dependencies
This package is for dependencies used at the root. This helps isolate these dependencies so that we aren't unintentionally using them within packages.
Other packages should never import from this package
@@ -0,0 +1,48 @@
{
"name": "@repo/workspace-dependencies",
"version": "0.1.3",
"private": true,
"sideEffects": false,
"type": "module",
"exports": {
"./zx": {
"import": "./src/zx.ts",
"require": {
"require": "./dist/zx.cjs",
"types": "./dist/zx.d.ts"
}
},
"./yaml": {
"import": "./src/yaml.ts",
"require": {
"require": "./dist/yaml.cjs",
"types": "./dist/yaml.d.ts"
}
},
"./zod": {
"import": "./src/zod.ts",
"require": {
"require": "./dist/zod.cjs",
"types": "./dist/zod.d.ts"
}
}
},
"scripts": {
"build": "runx build lib yaml.ts zod.ts zx.ts -d src -f cjs --platform node",
"check:lint": "run-oxlint",
"check:types": "run-tsc",
"test": "run-vitest"
},
"dependencies": {
"esbuild": "0.27.4",
"slugify": "1.6.8",
"wrangler": "4.76.0",
"yaml": "2.8.3",
"zod": "4.3.6",
"zx": "8.8.5"
},
"devDependencies": {
"@repo/tools": "workspace:*",
"vitest": "4.1.0"
}
}
@@ -0,0 +1 @@
export { default as YAML } from 'yaml'
@@ -0,0 +1 @@
export { z } from 'zod'
@@ -0,0 +1 @@
export * from 'zx'
@@ -0,0 +1,3 @@
{
"extends": "@repo/typescript-config/lib.json"
}