-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.66 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.66 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@bitcode/api",
"version": "1.0.0",
"description": "Comprehensive Bitcode API routes package - the unified backend route-orchestration layer; includes HTTP responses and streaming primitives",
"main": "src/index.ts",
"types": "src/index.ts",
"scripts": {
"build": "tsc --noEmit",
"test": "jest --config jest.config.cjs",
"dev": "tsc --watch",
"typecheck": "node ../../node_modules/typescript/bin/tsc -p tsconfig.typecheck.json --noEmit",
"type-check": "pnpm run typecheck"
},
"dependencies": {
"@bitcode/attachment-generics": "workspace:*",
"@bitcode/auth": "workspace:*",
"@bitcode/generic-vcs-bitbucket": "workspace:*",
"@bitcode/conversations": "workspace:*",
"@bitcode/btd": "workspace:*",
"@bitcode/email": "workspace:*",
"@bitcode/execution-generics": "workspace:*",
"@bitcode/errors": "workspace:*",
"@bitcode/externals-figma": "workspace:*",
"@bitcode/generic-vcs-git": "workspace:*",
"@bitcode/generic-vcs-gitlab": "workspace:*",
"@bitcode/external-telemetry-google": "workspace:*",
"@bitcode/logger": "workspace:*",
"@bitcode/mcp-generics": "workspace:*",
"@bitcode/generic-llms-models": "workspace:*",
"@bitcode/externals-notion": "workspace:*",
"@bitcode/observability": "workspace:*",
"@bitcode/orm": "workspace:*",
"@bitcode/asset-packs-pipelines-domain": "workspace:*",
"@bitcode/pipelines-generics": "workspace:*",
"@bitcode/generic-pipelines-execution-pipeline-sdivf": "workspace:*",
"@bitcode/networking": "workspace:*",
"@bitcode/security": "workspace:*",
"@bitcode/supabase": "workspace:*",
"@bitcode/vcs-generics": "workspace:*",
"@supabase/supabase-js": "^2.0.0",
"express": "^4.18.0",
"zod": "^3.21.4",
"@bitcode/pipeline-hosts": "workspace:*",
"@bitcode/generic-llms": "workspace:*",
"@bitcode/notifications": "workspace:*",
"@bitcode/asset-packs-pipelines-syntheses-domain": "workspace:*",
"@bitcode/asset-packs-pipelines-execution-pipeline-sdivf-synthesize-deposits-asset-packs": "workspace:*",
"@bitcode/asset-packs-pipelines-execution-pipeline-sdivf-synthesize-reads-asset-packs": "workspace:*"
},
"devDependencies": {
"@types/express": "^4.17.0",
"@types/node": "^20.0.0",
"typescript": "^5.0.0",
"jest": "^29.0.0",
"@types/jest": "^29.0.0"
},
"exports": {
".": "./src/index.ts",
"./btd": "./src/routes/btd-crypto.ts",
"./pipelines/cancel": "./src/pipelines/cancel.ts",
"./pipelines/orphan-sweep": "./src/pipelines/orphan-sweep.ts",
"./responses": "./src/responses/index.ts",
"./streams": "./src/streams/index.ts",
"./streams/*": "./src/streams/*"
}
}