mirror of
https://github.com/jakejarvis/sofa.git
synced 2026-08-29 00:25:38 -04:00
24 lines
472 B
JSON
24 lines
472 B
JSON
{
|
|
"name": "@sofa/api",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"exports": {
|
|
"./contract": "./src/contract.ts",
|
|
"./schemas": "./src/schemas.ts",
|
|
"./utils": "./src/utils.ts"
|
|
},
|
|
"scripts": {
|
|
"lint": "biome check",
|
|
"format": "biome format --write",
|
|
"check-types": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@orpc/contract": "catalog:",
|
|
"zod": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "catalog:"
|
|
}
|
|
}
|