-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.03 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.03 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
{
"name": "freeultracode-app",
"private": true,
"version": "0.2.5",
"type": "module",
"bin": {
"fuc": "./cli/dist/fuc.mjs"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"check:prompt-lock": "node --experimental-strip-types scripts/prompt-entry-lock-check.ts",
"typecheck": "tsc --noEmit && tsc -p tsconfig.cli.json --noEmit",
"lint": "eslint . --ext ts,tsx",
"test": "vitest run --environment jsdom",
"cli:build": "node cli/build.mjs",
"cli:dev": "node --experimental-strip-types cli/bin/fuc.ts",
"tauri": "tauri",
"desktop": "tauri dev",
"package": "tauri build"
},
"dependencies": {
"@tauri-apps/api": "^2.11.0",
"@tauri-apps/plugin-dialog": "^2.7.1",
"@tauri-apps/plugin-fs": "^2.5.1",
"@tauri-apps/plugin-opener": "^2.5.4",
"@xyflow/react": "^12.3.5",
"katex": "^0.16.47",
"lowlight": "^3.3.0",
"lucide-react": "^1.17.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.1.0",
"reactflow": "^11.11.4",
"rehype-highlight": "^7.0.2",
"rehype-katex": "^7.0.1",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"zustand": "^4.5.5"
},
"devDependencies": {
"@babel/parser": "^7.25.6",
"@babel/traverse": "^7.25.6",
"@babel/types": "^7.25.6",
"@tauri-apps/cli": "^2.11.2",
"@types/babel__traverse": "^7.20.6",
"@types/node": "^20.16.11",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react": "^4.3.3",
"autoprefixer": "^10.4.20",
"chalk": "^4.1.2",
"commander": "^4.1.1",
"esbuild": "^0.21.5",
"eslint": "^8.57.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.14",
"jsdom": "^25.0.1",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vitest": "^2.1.9"
}
}