-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.67 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.67 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
{
"name": "codex-trace",
"version": "0.1.0",
"private": true,
"bin": {
"codex-trace": "./bin/codex-trace.mjs"
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"dev:web": "tauri dev -- -- --web",
"lint": "oxlint && cargo clippy --manifest-path src-tauri/Cargo.toml",
"fmt": "oxfmt && cargo fmt --manifest-path src-tauri/Cargo.toml",
"fmt:check": "oxfmt --check && cargo fmt --manifest-path src-tauri/Cargo.toml --check",
"test": "vitest run && cargo test --manifest-path src-tauri/Cargo.toml",
"test:watch": "vitest",
"check": "tsc --noEmit && oxlint && oxfmt --check && cargo clippy --manifest-path src-tauri/Cargo.toml && cargo fmt --manifest-path src-tauri/Cargo.toml --check && vitest run && cargo test --manifest-path src-tauri/Cargo.toml"
},
"dependencies": {
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-fs": "^2",
"@tauri-apps/plugin-opener": "^2.5.4",
"@thesvg/react": "^3.0.5",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-icons": "^5.6.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.1",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@tauri-apps/cli": "^2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.9.1",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.0.0",
"@types/react-syntax-highlighter": "^15.5.0",
"@vitejs/plugin-react": "^6.0.2",
"jsdom": "^29.1.1",
"oxfmt": "^0.51.0",
"oxlint": "^1.66.0",
"typescript": "^6.0.3",
"vite": "^8.0.14",
"vitest": "^4.1.7"
}
}