* clean up helpers * shared in it's own top level folder * workspaces setup * build fix * disable workspaces? * run ci * rename job-flow to gradcracker * optional dependencies * formatting? * more optional modules * allow post install runs * node bump * remove post install * add optionals * add more * formatting * comments, but im unsure * run typescript DIRECTLY * better build * camoufox simplification * lint * build process doesn't exist * build fix * lockfile * type check everything, build only for client * rename steps correctly * import from package! * fix formatting * don't fetch twice * fix concern
22 lines
393 B
JSON
22 lines
393 B
JSON
{
|
|
"name": "job-ops-shared",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"check:types": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"zod": "^3.23.8"
|
|
},
|
|
"devDependencies": {
|
|
"@paralleldrive/cuid2": "^3.0.6",
|
|
"typescript": "~5.9.0"
|
|
},
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./utils/*": "./src/utils/*.ts",
|
|
"./*": "./src/*.ts"
|
|
}
|
|
}
|