mirror of
https://github.com/jakejarvis/sofa.git
synced 2026-07-14 18:15:56 -04:00
27 lines
619 B
JSON
27 lines
619 B
JSON
{
|
|
"name": "@sofa/api",
|
|
"version": "0.1.2",
|
|
"private": true,
|
|
"type": "module",
|
|
"exports": {
|
|
"./contract": "./src/contract.ts",
|
|
"./schemas": "./src/schemas.ts",
|
|
"./errors": "./src/errors.ts",
|
|
"./utils": "./src/utils.ts"
|
|
},
|
|
"scripts": {
|
|
"lint": "oxlint",
|
|
"format": "oxfmt --config ../../.oxfmtrc.json",
|
|
"format:check": "oxfmt --check --config ../../.oxfmtrc.json",
|
|
"check-types": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@orpc/contract": "catalog:",
|
|
"zod": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@sofa/tsconfig": "workspace:*",
|
|
"typescript": "catalog:"
|
|
}
|
|
}
|