-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 606 Bytes
/
Copy pathpackage.json
File metadata and controls
19 lines (19 loc) · 606 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "opentechcheck-monorepo",
"private": true,
"type": "module",
"workspaces": ["packages/*"],
"scripts": {
"test": "bun test",
"typecheck": "bunx tsc --noEmit -p packages/core && bunx tsc --noEmit -p packages/fingerprints && bunx tsc --noEmit -p packages/collect-http && bunx tsc --noEmit -p packages/extension",
"capture": "bun run scripts/capture.ts",
"compile": "cd packages/fingerprints && bun run compile"
},
"dependencies": {
"@opentechcheck/collect-http": "workspace:*"
},
"devDependencies": {
"bun-types": "^1.4.0",
"typescript": "^5.6.0"
}
}