-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 914 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 914 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
{
"name": "ogi-monorepo",
"private": true,
"scripts": {
"build": "bun run --filter './packages/*' build",
"release": "bun run --filter './packages/*' release",
"dev": "bun run --filter 'application' dev",
"format": "prettier --write \"packages/**/*.{ts,svelte,json}\" \"application/**/*.{ts,svelte,json}\" \"web/**/*.{ts,svelte,json}\" \"test-addon/**/*.{ts,svelte,json}\"",
"typecheck": "bun run --filter './packages/*' build && bun run --filter '*' typecheck"
},
"workspaces": [
"packages/*",
"application",
"updater",
"web",
"test-addon"
],
"devDependencies": {
"electron": "^40.1.0",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^3.4.0",
"typescript": "^5.9.3"
},
"overrides": {
"@types/minimatch": "5.1.2",
"@types/node": "^22.15.0"
},
"trustedDependencies": [
"electron",
"node-datachannel",
"sharp"
]
}