sourcebot/packages/schemas/package.json
2025-05-07 16:21:05 -07:00

23 lines
652 B
JSON

{
"name": "@sourcebot/schemas",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "yarn generate && tsc",
"generate": "tsx tools/generate.ts",
"watch": "nodemon --watch ../../schemas -e json -x 'yarn generate'",
"postinstall": "yarn build"
},
"devDependencies": {
"@apidevtools/json-schema-ref-parser": "^11.7.3",
"glob": "^11.0.1",
"json-schema-to-typescript": "^15.0.4",
"nodemon": "^3.1.10",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"exports": {
"./v2/*": "./dist/v2/*.js",
"./v3/*": "./dist/v3/*.js"
}
}