-
Notifications
You must be signed in to change notification settings - Fork 264
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 997 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 997 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "@sourcebot/shared",
"version": "0.1.0",
"type": "module",
"private": true,
"scripts": {
"build": "cross-env SKIP_ENV_VALIDATION=1 tsc",
"build:watch": "tsc-watch --preserveWatchOutput",
"dev": "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",
"cross-env": "^7.0.3",
"tsc-watch": "6.2.1",
"typescript": "^5.7.3"
},
"exports": {
".": "./dist/index.server.js",
"./client": "./dist/index.client.js"
}
}