-
Notifications
You must be signed in to change notification settings - Fork 248
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.44 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.44 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
{
"name": "dust-monorepo",
"version": "1.0.0",
"private": true,
"workspaces": [
"front",
"front-spa",
"sparkle",
"connectors",
"cli/dust-cli",
"extension",
"viz",
"sdks/js"
],
"packageManager": "[email protected]",
"scripts": {
"preinstall": "corepack enable npm",
"clean": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"install:all": "npm install",
"knip": "knip",
"format": "biome check --write --error-on-warnings .",
"format:ci": "biome ci --error-on-warnings .",
"format:lefthook": "biome check --write --error-on-warnings --no-errors-on-unmatched",
"format:changed": "biome check --write --error-on-warnings --changed",
"test:grit": "command -v grit >/dev/null 2>&1 || { echo 'Error: grit CLI not found. Install it with: brew install getgrit/tap/grit (or: curl -fsSL https://docs.grit.io/install | bash)'; exit 1; } && grit patterns test"
},
"devDependencies": {
"@biomejs/biome": "^2.4.8",
"@typescript/native-preview": "^7.0.0-dev.20260224.1",
"knip": "^5.80.0",
"lefthook": "^2.1.0",
"wrangler": "4.80.0"
},
"engines": {
"node": ">=24.0.0"
},
"overrides": {
"eslint-plugin-react-hooks": {
"zod-validation-error": "^4.0.0"
},
"@types/react": "^18.3.18",
"@modelcontextprotocol/sdk": "^1.27.0",
"@types/node": "^24.12.2",
"dd-trace": "^5.87.0",
"esbuild": "^0.27.3",
"undici": "^7.24.0"
}
}