-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 2.94 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 2.94 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@meebox/desktop",
"version": "0.12.1",
"private": true,
"description": "meebox Electron desktop app",
"author": {
"name": "huhamhire",
"email": "me@huhamhire.com"
},
"repository": {
"type": "git",
"url": "https://github.com/huhamhire/code-meeseeks.git"
},
"main": "out/main/index.js",
"type": "module",
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"start": "electron .",
"typecheck": "tsc --noEmit -p tsconfig.json && tsc --noEmit -p tsconfig.node.json",
"lint": "eslint src --max-warnings=0",
"prepare:pragent": "node scripts/assemble-pragent-runtime.mjs",
"notices": "node ../../tools/gen-third-party-notices.mjs",
"pack": "npm run prepare:pragent && electron-vite build && npm run notices && electron-builder --dir",
"dist": "npm run prepare:pragent && electron-vite build && npm run notices && electron-builder"
},
"nx": {
"targets": {
"build": {
"cache": true,
"outputs": [
"{projectRoot}/out"
]
},
"typecheck": {
"cache": true
},
"lint": {
"cache": true
},
"prepare:pragent": {
"cache": false,
"outputs": [
"{projectRoot}/vendor"
]
},
"pack": {
"cache": false,
"outputs": [
"{projectRoot}/release"
]
},
"dist": {
"cache": false,
"outputs": [
"{projectRoot}/release"
]
}
}
},
"dependencies": {
"@iconify-json/material-icon-theme": "^1.2.66",
"@iconify/react": "^5.2.1",
"@meebox/agent": "*",
"@meebox/config": "*",
"@meebox/ipc": "*",
"@meebox/logger": "*",
"@meebox/platform-core": "*",
"@meebox/platform-bitbucket-server": "*",
"@meebox/platform-github": "*",
"@meebox/platform-gitlab": "*",
"@meebox/poller": "*",
"@meebox/pr-agent-bridge": "*",
"@meebox/repo-mirror": "*",
"@meebox/rules": "*",
"@meebox/shared": "*",
"@meebox/state-store": "*",
"@monaco-editor/react": "^4.7.0",
"anser": "^2.3.5",
"i18next": "^26.3.1",
"i18next-resources-to-backend": "^1.2.1",
"mermaid": "^11.4.0",
"monaco-editor": "^0.56.0",
"pino": "^9.5.0",
"pino-roll": "^3.0.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-i18next": "^17.0.8",
"react-markdown": "^9.1.0",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"semver": "^7.6.3",
"undici": "^6.21.1",
"yaml": "^2.6.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@types/semver": "^7.5.8",
"@vitejs/plugin-react": "^5.2.0",
"electron": "^42.3.0",
"electron-builder": "^26.8.1",
"electron-vite": "^5.0.0",
"sass": "^1.100.0",
"tar": "^7.4.3",
"vite": "^7.3.0"
}
}