mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-12 04:15:30 +00:00
33 lines
884 B
JSON
33 lines
884 B
JSON
|
|
{
|
||
|
|
"name": "@sourcebot/shared",
|
||
|
|
"version": "0.1.0",
|
||
|
|
"type": "module",
|
||
|
|
"private": true,
|
||
|
|
"scripts": {
|
||
|
|
"build": "tsc",
|
||
|
|
"build:watch": "tsc-watch --preserveWatchOutput",
|
||
|
|
"postinstall": "yarn build"
|
||
|
|
},
|
||
|
|
"dependencies": {
|
||
|
|
"@sourcebot/crypto": "workspace:*",
|
||
|
|
"@sourcebot/db": "workspace:*",
|
||
|
|
"@sourcebot/logger": "workspace:*",
|
||
|
|
"@sourcebot/schemas": "workspace:*",
|
||
|
|
"@t3-oss/env-core": "^0.12.0",
|
||
|
|
"ajv": "^8.17.1",
|
||
|
|
"micromatch": "^4.0.8",
|
||
|
|
"strip-json-comments": "^5.0.1",
|
||
|
|
"zod": "^3.24.3"
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"@types/micromatch": "^4.0.9",
|
||
|
|
"@types/node": "^22.7.5",
|
||
|
|
"tsc-watch": "6.2.1",
|
||
|
|
"typescript": "^5.7.3"
|
||
|
|
},
|
||
|
|
"exports": {
|
||
|
|
".": "./dist/index.server.js",
|
||
|
|
"./client": "./dist/index.client.js"
|
||
|
|
}
|
||
|
|
}
|