mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-11 20:05:25 +00:00
23 lines
652 B
JSON
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"
|
|
}
|
|
}
|