-
Notifications
You must be signed in to change notification settings - Fork 238
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.11 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.11 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
{
"name": "horizon",
"private": true,
"scripts": {
"dev": "turbo run desktop#dev",
"dev:silent": "SILENCE_WARNINGS=true yarn run dev",
"dev:all": "turbo dev",
"build": "turbo run desktop#build",
"build:frontend": "turbo run desktop#build:frontend",
"build:packages": "turbo build --filter=!desktop",
"build:libs": "turbo run @deta/utils#build @deta/ui#build @deta/icons#build @deta/editor#build --force",
"build:desktop": "yarn workspace desktop build",
"build:desktop:mwl": "yarn turbo run desktop#build:mwl",
"build:desktop:mac": "yarn turbo run desktop#build:mac",
"build:desktop:mac:x64": "yarn turbo run desktop#build:mac:x64",
"build:desktop:mac:arm": "yarn turbo run desktop#build:mac:arm",
"build:desktop:lin:x64": "yarn turbo run desktop#build:lin:x64",
"build:desktop:lin:arm": "yarn turbo run desktop#build:lin:arm",
"build:desktop:win:x64": "yarn turbo run desktop#build:win:x64",
"build:backend": "yarn turbo run @deta/backend#build",
"build:tela": "yarn workspace @horizon/tela build",
"build:dragcula": "yarn workspace @horizon/dragcula build",
"lint": "turbo lint",
"format": "prettier --ignore-path .gitignore --ignore-path .prettierignore --write \"**/*.{js,ts,tsx,yml,json,md}\"",
"prepare": "husky",
"postinstall": "patch-package"
},
"devDependencies": {
"@horizon/eslint-config": "*",
"@horizon/typescript-config": "*",
"husky": "^9.0.10",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "^3.1.1",
"prettier-plugin-svelte": "^3.4.0",
"turbo": "2.5.6"
},
"engines": {
"node": ">=22.18.0"
},
"packageManager": "[email protected]",
"workspaces": {
"packages": [
"app",
"packages/*"
],
"nohoist": [
"electron",
"electron-builder",
"electron-vite"
]
},
"resolutions": {
"cookie": "^0.7.0",
"brace-expansion": "^2.0.2",
"tmp": "^0.2.4",
"devalue": "^5.4.1",
"expr-eval-fork": "^3.0.0",
"gray-matter/js-yaml": "3.14.2",
"front-matter/js-yaml": "3.14.2",
"electron-builder/**/js-yaml": "4.1.1"
}
}