-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathpackage.json
More file actions
227 lines (227 loc) · 8.76 KB
/
Copy pathpackage.json
File metadata and controls
227 lines (227 loc) · 8.76 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
{
"name": "orgii",
"version": "1.1.12",
"description": "Self-evolving agentic development framework — ORGII desktop app",
"main": "src/index.tsx",
"scripts": {
"prepare": "husky install",
"postinstall": "node scripts/setup/postinstall.mjs",
"dev:frontend": "node scripts/dev/webpack-server.js",
"dev:frontend:light": "ORGII_LIGHT_DEV=true FAST_DEV=true DEV_SOURCEMAPS=false node scripts/dev/webpack-server.js",
"build": "webpack --mode production",
"download": "python3 scripts/tools/download.py",
"download:sidecars": "python3 scripts/tools/download_sidecars.py",
"tauri:dev": "node scripts/dev/tauri.js",
"tauri:dev:light": "ORGII_LIGHT_DEV=true node scripts/dev/tauri.js",
"tauri:dev:only": "node scripts/tauri/run-with-features.cjs dev",
"build:release": "rm -rf build node_modules/.cache && webpack --mode production",
"tauri:build": "node scripts/tauri/run-with-features.cjs build",
"tauri:build:semantic": "node scripts/tauri/run-with-features.cjs build --semantic",
"tauri:build:fast": "node scripts/tauri/build-fast-parallel.cjs",
"tauri:build:fast:serial": "node scripts/tauri/run-with-features.cjs build -- --profile dev-build",
"tauri:build:fast:local": "node scripts/tauri/build-fast-local.cjs",
"tauri:build:fast:open": "node scripts/tauri/build-fast-open.cjs",
"tauri:build:fast:open:semantic": "node scripts/tauri/build-fast-open.cjs --semantic",
"tauri:build:release": "node scripts/tauri/run-with-features.cjs build",
"clean:cache": "rm -rf node_modules/.cache",
"clean:cargo": "./scripts/maintenance/cargo-cleanup.sh",
"clean:cargo:full": "./scripts/maintenance/cargo-cleanup.sh --full",
"analyze": "webpack --mode production --profile --json > build/stats.json && webpack-bundle-analyzer build/stats.json",
"lint": "eslint src/ --ext .ts,.tsx,.js,.jsx",
"lint:fix": "eslint src/ --ext .ts,.tsx,.js,.jsx --fix",
"lint:file": "eslint",
"lint:file:fix": "eslint --fix",
"cargo:check": "cd src-tauri && cargo check",
"cargo:clippy": "cd src-tauri && cargo clippy",
"cargo:test": "cd src-tauri && cargo test --lib --no-fail-fast",
"cargo:test:agent_core": "cd src-tauri && cargo test --lib agent_core::",
"cargo:test:event_store": "cd src-tauri && cargo test --lib event_store::",
"cargo:test:work_station": "cd src-tauri && cargo test --lib work_station::",
"cargo:test:agent_variants": "cd src-tauri && cargo test --lib agent_variants::",
"cargo:test:tool_service": "cd src-tauri && cargo test --lib tool_service::",
"check:circular": "npx madge --circular --extensions ts,tsx --ts-config tsconfig.json src/",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"check:unused-exports": "ts-unused-exports tsconfig.json --excludePathsFromReport='src/index.tsx;src/app/;src/i18n/;.test.ts;.test.tsx;/types.ts;/index.ts;src/scaffold/;src/types/ambient/'",
"check:unused-exports:all": "ts-unused-exports tsconfig.json",
"check:e2e-oauth-guards": "node scripts/quality/check-e2e-oauth-guards.mjs"
},
"keywords": [
"orgii",
"agent",
"tauri",
"desktop"
],
"author": "YORG-AI",
"license": "AGPL-3.0-or-later",
"dependencies": {
"@a2ui/react": "^0.10.0",
"@a2ui/web_core": "^0.10.0",
"@codemirror/autocomplete": "^6.20.0",
"@codemirror/commands": "6.10.0",
"@codemirror/lang-cpp": "^6.0.3",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-java": "^6.0.2",
"@codemirror/lang-javascript": "^6.2.4",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-rust": "^6.0.2",
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/language": "6.12.2",
"@codemirror/lint": "^6.9.2",
"@codemirror/merge": "^6.11.2",
"@codemirror/search": "^6.6.0",
"@codemirror/state": "6.6.0",
"@codemirror/view": "^6.39.11",
"@crabnebula/tauri-plugin-drag": "^2.1.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@emotion/is-prop-valid": "^1.4.0",
"@fabianlars/tauri-plugin-oauth": "^2.0.0",
"@lezer/highlight": "^1.2.3",
"@libsql/client": "^0.17.0",
"@replit/codemirror-indentation-markers": "^6.5.3",
"@supabase/supabase-js": "^2.106.2",
"@tanstack/react-table": "^8.21.3",
"@tanstack/react-virtual": "^3.13.13",
"@tauri-apps/api": "~2.10.0",
"@tauri-apps/plugin-deep-link": "^2.4.5",
"@tauri-apps/plugin-dialog": "2.6.0",
"@tauri-apps/plugin-fs": "2.4.5",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-opener": "^2.5.2",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-shell": "^2.3.3",
"@tauri-apps/plugin-store": "^2.4.1",
"@tauri-apps/plugin-updater": "2.9.0",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@uiw/codemirror-themes": "^4.25.4",
"@uiw/react-codemirror": "^4.25.4",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-search": "^0.16.0",
"@xterm/addon-serialize": "^0.14.0",
"@xterm/addon-unicode11": "^0.9.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/addon-webgl": "^0.19.0",
"@xterm/xterm": "^6.0.0",
"ali-react-table": "^2.6.1",
"ansi-to-react": "^6.1.6",
"axios": "^1.6.3",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"codemirror": "^6.0.2",
"dayjs": "^1.11.10",
"dompurify": "^3.4.8",
"framer-motion": "^12.23.24",
"highlight.js": "^11.9.0",
"i18next": "^25.8.1",
"ignore": "^7.0.5",
"jotai": "^2.8.2",
"jotai-family": "^1.0.2",
"jszip": "^3.10.1",
"keepalive-for-react": "4.0.3",
"keepalive-for-react-router": "1.0.1",
"lodash": "^4.17.21",
"lucide-react": "0.563.0",
"mammoth": "^1.12.0",
"mermaid": "^10.9.5",
"nanoid": "^5.1.11",
"papaparse": "^5.5.3",
"process": "^0.11.10",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-i18next": "^16.5.4",
"react-intersection-observer": "^10.0.0",
"react-is": "^19.2.4",
"react-live": "^4.1.8",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.21.1",
"react-syntax-highlighter": "^15.5.0",
"react-virtuoso": "^4.17.0",
"recharts": "^3.6.0",
"remark-gfm": "^4.0.0",
"shiki": "^3.21.0",
"sql-formatter": "^15.7.0",
"tailwind-scrollbar-hide": "^1.1.7",
"terser-webpack-plugin": "^5.3.10",
"uuid": "^11.0.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@commitlint/cli": "^19",
"@commitlint/config-conventional": "^19",
"@pmmmwh/react-refresh-webpack-plugin": "^0.6.2",
"@svgr/webpack": "^8.1.0",
"@swc/core": "^1.15.5",
"@tailwindcss/container-queries": "^0.1.1",
"@tauri-apps/cli": "2",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/lodash": "^4.17.0",
"@types/node": "^20.10.5",
"@types/papaparse": "^5.5.2",
"@types/react-syntax-highlighter": "^15.5.13",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"@vitest/coverage-v8": "^2.1.9",
"autoprefixer": "^10.4.16",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^7.0.2",
"dotenv": "^17.4.2",
"dotenv-webpack": "^8.0.1",
"dugite": "^3.2.2",
"esbuild-loader": "^4.4.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-unused-imports": "^4.3.0",
"html-webpack-plugin": "^5.6.6",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"mini-css-extract-plugin": "^2.9.2",
"postcss": "^8.4.32",
"postcss-loader": "^8.2.1",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.6.14",
"raw-loader": "^4.0.2",
"react-refresh": "^0.18.0",
"sass": "^1.69.5",
"sass-loader": "^13.3.3",
"style-loader": "^3.3.3",
"swc-loader": "^0.2.6",
"tailwindcss": "^3.4.0",
"ts-unused-exports": "^11.0.1",
"typescript": "^5.3.3",
"vitest": "^2.1.9",
"webpack": "^5.91.0",
"webpack-bundle-analyzer": "^5.1.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"lint-staged": {
"src/**/*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"src/**/*.{css,scss,md,json}": [
"prettier --write"
],
"*.{css,scss,md,json}": [
"prettier --write"
]
},
"packageManager": "pnpm@9.15.4+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0"
}