courtmitra / packages /domain /package.json
hetanshwaghela's picture
Day 1–2: monorepo scaffold + ingestion→intake→evidence loop
170b9b6
Raw
History Blame
403 Bytes
{
"name": "@courtmitra/domain",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": "./src/index.ts"
},
"scripts": {
"typecheck": "tsc --noEmit",
"build": "tsc --noEmit"
},
"dependencies": {
"@courtmitra/contracts": "workspace:*"
},
"devDependencies": {
"typescript": "^5.7.2"
}
}