-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
191 lines (191 loc) · 8.4 KB
/
Copy pathpackage.json
File metadata and controls
191 lines (191 loc) · 8.4 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
{
"name": "texra-workspace",
"version": "0.40.8",
"private": true,
"packageManager": "pnpm@11.5.2+sha512.71c631e382066efc25625d5cf029075de07b61b37f6e27350fbd84b1bda5864c8c1967adc280776b45c30a715c0359a3be08fef42d5bb09e2b99029979692916",
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "node --max-old-space-size=6144 ./node_modules/eslint/bin/eslint.js src packages/agent/src packages/agent/scripts packages/extension/src packages/desktop/src packages/cli/src \"packages/cli/scripts/**/*.{ts,tsx}\"",
"test": "vitest run --config vitest.config.mjs",
"test:watch": "vitest --config vitest.config.mjs",
"desktop:build": "corepack pnpm --filter @texra/trace-viewer run build && corepack pnpm --filter @texra/desktop build",
"desktop:dev": "corepack pnpm --filter @texra/desktop dev",
"desktop:package:local": "node scripts/run-desktop-package-local.mjs",
"desktop:package:dist": "corepack pnpm run desktop:build && corepack pnpm --filter @texra/desktop package:dist",
"desktop:package:smoke": "node scripts/smoke-desktop-package-launch.mjs",
"build:initial": "corepack pnpm run desktop:build && corepack pnpm run build:fast && corepack pnpm run check:initial-build-artifacts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"hooks:install": "node scripts/install-local-hooks.mjs",
"vite:webviews": "corepack pnpm --filter texra vite:webviews",
"capture:walkthrough-media": "node scripts/capture-walkthrough-media.mjs",
"smoke:webviews": "corepack pnpm run vite:webviews && corepack pnpm run smoke:webviews:run",
"smoke:webviews:run": "node scripts/smoke-webviews-electron.mjs",
"typecheck": "npm run typecheck:workspace && npm run typecheck:test-kernel && npm run typecheck:agent && npm run typecheck:cli && npm run typecheck:trace-viewer && npm run typecheck:desktop",
"typecheck:workspace": "tsc --noEmit --checkers 8",
"typecheck:test-kernel": "tsc --noEmit --checkers 8 -p tsconfig.test-kernel.json",
"typecheck:agent": "corepack pnpm --filter @texra-ai/agent build",
"typecheck:cli": "corepack pnpm --filter @texra-ai/cli typecheck",
"typecheck:trace-viewer": "corepack pnpm --filter @texra/trace-viewer run typecheck",
"typecheck:desktop": "corepack pnpm --filter @texra/desktop typecheck",
"compile:fast": "corepack pnpm --filter texra compile:fast",
"compile:safe": "npm run typecheck && npm run compile:fast",
"watch:fast": "corepack pnpm --filter texra watch:fast",
"package:fast": "corepack pnpm --filter texra package:fast",
"package:safe": "npm run typecheck && npm run package:fast",
"build:fast": "corepack pnpm --filter texra build:fast",
"build:safe": "npm run typecheck && npm run build:fast",
"sync:package-contributes": "node scripts/sync-package-contributes.mjs",
"check:package-contributes": "node scripts/sync-package-contributes.mjs --check",
"sync:tsconfig-paths": "node scripts/sync-tsconfig-paths.mjs",
"check:tsconfig-paths": "node scripts/sync-tsconfig-paths.mjs --check",
"sync:extension-package-invariants": "node scripts/verify-extension-package-invariants.mjs --update",
"check:extension-package-invariants": "node scripts/verify-extension-package-invariants.mjs",
"check:vsix-contents": "node scripts/verify-vsix-contents.mjs",
"check:desktop-electron-binary": "node scripts/check-desktop-electron-binary.mjs",
"check:desktop-build-artifacts": "node scripts/verify-desktop-build-artifacts.mjs",
"check:initial-build-artifacts": "corepack pnpm run check:vsix-contents && corepack pnpm run check:desktop-build-artifacts",
"check:desktop-package": "node scripts/verify-desktop-package.mjs",
"check:dead-code": "VITE_WEBVIEW=webview knip --no-progress --include files,exports,types,duplicates",
"check:dead-code-ratchet": "node scripts/check-dead-code-ratchet.mjs",
"check:guidance-refs": "node scripts/check-guidance-refs.mjs",
"check:browser-safe-utils": "node scripts/check-browser-safe-utils.mjs",
"texra-local:build": "corepack pnpm --filter @texra-ai/cli run prepare:trace-viewer-assets && corepack pnpm --filter @texra-ai/cli run bundle && corepack pnpm --filter @texra-ai/cli run copy:resources && corepack pnpm --filter @texra-ai/cli run copy:docs",
"texra-local:link": "node scripts/link-texra-local.mjs",
"check:desktop-installers": "node scripts/verify-desktop-installer-artifacts.mjs",
"sync:remote-agents": "node scripts/sync-remote-agents.mjs"
},
"devDependencies": {
"@effect/language-service": "^0.87.2",
"@electron/asar": "^4.3.0",
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/diff-match-patch": "^1.0.36",
"@types/identifiers-arxiv": "^0.1.2",
"@types/jsdom": "^30.0.0",
"@types/mime-types": "^3.0.1",
"@types/node": "^22.19.17",
"@types/nunjucks": "^3.2.6",
"@types/pluralize": "^0.0.33",
"@types/proper-lockfile": "^4.1.4",
"@types/semver": "^7.8.0",
"@types/shell-quote": "^1.7.5",
"@types/sortablejs": "^1.15.9",
"@types/turndown": "^5.0.6",
"@types/vscode": "^1.125.0",
"@types/write-file-atomic": "^4.0.3",
"@typescript-eslint/eslint-plugin": "^8.68.0",
"@typescript-eslint/parser": "^8.68.0",
"@typescript/native": "npm:typescript@^7.0.2",
"citty": "^0.2.2",
"clipboardy": "^5.3.2",
"esbuild": "^0.28.2",
"eslint": "^10.9.1",
"eslint-plugin-import-x": "^4.17.1",
"eslint-plugin-unicorn": "^73.0.0",
"globals": "^17.11.0",
"jsdom": "^30.0.1",
"knip": "^6.32.3",
"memfs": "^4.68.1",
"prettier": "^3.9.6",
"typescript": "npm:@typescript/typescript6@^6.0.2",
"typescript-eslint": "^8.68.0",
"vite": "^8.2.2",
"vitest": "^4.1.11"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.3.250",
"@anthropic-ai/sdk": "^0.122.0",
"@awesome.me/webawesome": "^3.12.0",
"@cantoo/pdf-lib": "^2.9.1",
"@fortawesome/free-solid-svg-icons": "^7.3.1",
"@google/genai": "^2.19.0",
"@jamesgopsill/crossref-client": "^1.1.0",
"@jitl/quickjs-wasmfile-release-sync": "0.32.0",
"@lit-labs/signals": "^0.3.0",
"@lit-labs/ssr": "^4.1.0",
"@lit/context": "^1.1.6",
"@octokit/request": "^10.0.15",
"@octokit/request-error": "^7.1.1",
"@openai/codex-sdk": "^0.150.1",
"@openrouter/sdk": "^1.2.80",
"@supabase/supabase-js": "2.112.4",
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"acorn": "^8.18.0",
"acorn-walk": "^8.3.5",
"arxiv-client": "^0.0.9",
"async-mutex": "^0.5.0",
"bibtex": "^0.9.0",
"content-disposition": "^3.0.0",
"data-uri-to-buffer": "^7.0.0",
"date-fns": "^4.4.0",
"deepmerge": "^4.3.1",
"delay": "^7.0.0",
"diff": "^9.0.0",
"diff-match-patch": "^1.0.5",
"effect": "4.0.0-rc.112",
"escape-string-regexp": "^5.0.0",
"execa": "^10.0.1",
"fast-xml-parser": "^5.11.1",
"fastest-levenshtein": "^1.0.16",
"glob": "^13.0.6",
"highlight.js": "^11.12.0",
"highlightjs-lean": "^1.2.0",
"http-status-codes": "^2.3.0",
"identifiers-arxiv": "^0.1.1",
"ignore": "^7.0.6",
"image-size": "^2.0.2",
"is-network-error": "^1.3.2",
"is-wsl": "^3.1.1",
"katex": "^0.18.4",
"ky": "^2.1.0",
"lit": "^3.3.3",
"llm-zoo": "^1.31.0",
"lru-cache": "^11.5.2",
"markdown-it": "^15.0.1",
"markdown-it-texmath": "^1.0.0",
"mime-types": "^3.0.1",
"monaco-editor": "^0.56.0",
"mutative": "^1.3.0",
"nanoid": "^6.0.1",
"neverthrow": "^8.2.0",
"nunjucks": "^3.2.4",
"openai": "^7.4.0",
"p-defer": "^4.0.1",
"p-map": "^7.0.7",
"p-queue": "^9.3.3",
"p-retry": "^8.0.0",
"p-throttle": "^8.1.0",
"p-timeout": "^7.0.1",
"pathe": "^2.0.3",
"pdf2pic": "^3.2.0",
"perfect-debounce": "^2.1.0",
"pluralize": "^8.0.0",
"postal-mime": "^3.0.0",
"pretty-bytes": "^7.1.1",
"pretty-ms": "^9.3.1",
"proper-lockfile": "^4.1.2",
"quickjs-emscripten-core": "0.32.0",
"safe-stable-stringify": "^2.5.0",
"semver": "^7.8.5",
"serialize-error": "^13.0.1",
"shell-quote": "^1.10.0",
"signal-polyfill": "^0.2.2",
"simple-git": "^3.36.0",
"sortablejs": "^1.15.7",
"strip-ansi": "^7.2.0",
"tar": "^7.5.22",
"tree-kill": "^1.2.2",
"turndown": "^7.2.4",
"turndown-plugin-gfm": "^1.0.2",
"undici": "^7.29.0",
"vscode-jsonrpc": "^9.0.2",
"which": "^5.0.0",
"write-file-atomic": "^7.0.1",
"yaml": "^2.9.0",
"zod": "^4.4.3"
}
}