-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 3 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 3 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "breeze",
"version": "0.1.0",
"private": true,
"description": "Fast, modern Remote Monitoring and Management platform",
"scripts": {
"prepare": "git config core.hooksPath .githooks 2>/dev/null || true",
"dev": "turbo run dev",
"build": "turbo run build",
"lint": "turbo run lint",
"test": "turbo run test",
"db:migrate": "turbo run db:migrate --filter=@breeze/api",
"db:check-drift": "turbo run db:check-drift --filter=@breeze/api",
"db:seed": "turbo run db:seed --filter=@breeze/api",
"db:studio": "turbo run db:studio --filter=@breeze/api",
"clean": "turbo run clean && rm -rf node_modules",
"demo:test": "bash scripts/demo-mcp-test.sh",
"wt-stack": "tsx scripts/dev/wt-stack/cli.ts"
},
"devDependencies": {
"@typescript-eslint/parser": "^8.57.1",
"eslint": "^10.6.0",
"tsx": "^4.23.0",
"turbo": "^2.9.17",
"typescript": "^5.7.2"
},
"packageManager": "pnpm@10.33.4",
"engines": {
"node": ">=22.19.0",
"pnpm": ">=10.33.4"
},
"pnpm": {
"overrides": {
"axios@>=1.0.0 <1.15.2": ">=1.15.2",
"fast-xml-parser@<5.5.7": ">=5.5.7",
"fast-xml-parser@<5.7.0": ">=5.7.0",
"brace-expansion@<1.1.13": ">=1.1.13",
"brace-expansion@>=2.0.0 <2.0.3": ">=2.0.3",
"brace-expansion@>=4.0.0 <5.0.6": ">=5.0.6",
"brace-expansion@5.0.5": "5.0.6",
"devalue@<5.6.4": ">=5.6.4",
"devalue@>=5.6.4 <=5.8.0": ">=5.8.1",
"dompurify@<3.4.11": ">=3.4.11",
"@babel/core@<7.29.6": ">=7.29.6 <8.0.0",
"@opentelemetry/core@<2.8.0": ">=2.8.0",
"form-data@<4.0.6": ">=4.0.6",
"h3@<1.15.10": ">=1.15.10",
"lodash@>=4.0.0 <=4.17.22": ">=4.17.23",
"minimatch@<3.1.4": ">=3.1.4",
"minimatch@>=9.0.0 <9.0.7": ">=9.0.7",
"node-forge@<1.4.0": ">=1.4.0",
"picomatch@<2.3.2": ">=2.3.2",
"picomatch@>=4.0.0 <4.0.4": ">=4.0.4",
"picomatch@4.0.3": "4.0.4",
"protobufjs@<8.4.1": ">=8.4.1",
"fast-xml-builder@<1.1.7": ">=1.1.7",
"glob@>=10.0.0 <10.5.0": ">=10.5.0",
"micromatch@4.0.8>picomatch": "4.0.4",
"qs@>=6.7.0 <=6.15.1": ">=6.15.2",
"smol-toml@<1.6.1": ">=1.6.1",
"svgo@=4.0.0": ">=4.0.1",
"@tootallnate/once@<3.0.1": ">=3.0.1",
"undici@>=6.0.0 <6.27.0": ">=6.27.0 <7.0.0",
"undici@>=7.0.0 <7.28.0": ">=7.28.0 <8.0.0",
"ws@>=8.0.0 <8.20.1": ">=8.20.1",
"yaml@>=2.0.0 <2.8.3": ">=2.8.3",
"markdown-it@<12.3.2": ">=12.3.2",
"is-generator-function@>=1.1.0": "1.0.10",
"js-cookie@<3.0.7": ">=3.0.7",
"ip@<=2.0.1": "npm:neoip@^3.1.0",
"@xmldom/xmldom@<0.8.13": ">=0.8.13",
"postcss@<8.5.10": ">=8.5.10",
"vite@<6.4.2": ">=6.4.2",
"rollup@>=4.0.0 <4.59.0": ">=4.59.0",
"esbuild@<0.28.1": ">=0.28.1",
"nodemailer@<9.0.1": ">=9.0.1",
"follow-redirects@<=1.15.11": ">=1.16.0",
"uuid@<14.0.0": ">=14.0.0",
"@astrojs/node@<10.0.5": ">=10.0.5",
"shell-quote@<1.8.4": ">=1.8.4",
"@grpc/grpc-js@<1.14.4": ">=1.14.4"
}
}
}