Files
recflare/packages/workspace-dependencies/package.json
T
Nexi 222547ee13 [api] audit fixes: account tests, dependencies and security hardening (#54)
* test(accounts): cover three username changes

* chore(deps): update vulnerable runtime dependencies

* fix(security): bound uploads and validate token subjects strictly

---------

Co-authored-by: Nexi (CWN) <communityshieldofficial@gmail.com>
2026-09-08 23:47:58 -04:00

49 lines
941 B
JSON

{
"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.28.1",
"slugify": "1.6.9",
"wrangler": "4.128.0",
"yaml": "2.9.0",
"zod": "4.4.3",
"zx": "8.8.5"
},
"devDependencies": {
"@repo/tools": "workspace:*",
"vitest": "4.1.9"
}
}