-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 4.81 KB
/
Copy pathpackage.json
File metadata and controls
130 lines (130 loc) · 4.81 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
{
"name": "chatless",
"private": false,
"version": "0.6.4",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "cross-env NODE_ENV=production NODE_OPTIONS=\"--max_old_space_size=8192 --max_semi_space_size=256\" next build",
"start": "next start",
"lint": "next lint --dir src --fix",
"lint:ci": "next lint --dir src --quiet --max-warnings=0",
"typecheck": "tsc -p tsconfig.json --noEmit",
"verify": "pnpm lint:ci && pnpm typecheck && pnpm build",
"format": "biome format src --write && biome organize-imports src --write",
"test": "echo \"No tests specified yet\" && exit 0",
"tauri": "tauri",
"generate:settings-index": "node scripts/generate-settings-index.cjs",
"update:app-info": "node scripts/update-app-info.js",
"icons:index": "node scripts/generate-icons-index.cjs",
"predev": "pnpm run icons:index",
"prestart": "pnpm run icons:index",
"prebuild": "pnpm run generate:settings-index && pnpm run update:app-info && pnpm run icons:index",
"pretauri": "pnpm run generate:settings-index && pnpm run update:app-info && pnpm run icons:index",
"dev:db:reset": "tsx src/scripts/dev-db-reset.ts",
"dev:test:providers": "tsx src/scripts/test-providers.ts",
"update:generate": "node scripts/updater.mjs",
"update:verify": "node scripts/updater-verify.mjs",
"version:set": "node scripts/set-version.mjs",
"tag:repush": "node scripts/repushtag.mjs",
"release": "pnpm typecheck && node scripts/release.mjs",
"export:model-rules": "node scripts/export-model-fetch-rules.mjs"
},
"dependencies": {
"@dnd-kit/core": "^6.0.8",
"@dnd-kit/sortable": "^7.0.2",
"@dnd-kit/utilities": "^3.2.1",
"@fontsource/inter": "^5.2.6",
"@radix-ui/react-alert-dialog": "^1.1.11",
"@radix-ui/react-checkbox": "^1.2.3",
"@radix-ui/react-collapsible": "^1.1.8",
"@radix-ui/react-dialog": "^1.1.11",
"@radix-ui/react-dropdown-menu": "^2.1.12",
"@radix-ui/react-label": "^2.1.4",
"@radix-ui/react-popover": "^1.1.11",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-scroll-area": "^1.2.6",
"@radix-ui/react-select": "^2.2.2",
"@radix-ui/react-slot": "^1.2.0",
"@radix-ui/react-tabs": "^1.1.9",
"@radix-ui/react-toast": "^1.2.11",
"@radix-ui/react-tooltip": "^1.2.4",
"@tauri-apps/api": "^2.5.0",
"@tauri-apps/plugin-dialog": "^2.2.2",
"@tauri-apps/plugin-fs": "^2.2.1",
"@tauri-apps/plugin-http": "^2.4.3",
"@tauri-apps/plugin-log": "~2",
"@tauri-apps/plugin-opener": "^2.2.6",
"@tauri-apps/plugin-os": "~2",
"@tauri-apps/plugin-process": "~2.3.0",
"@tauri-apps/plugin-shell": "~2.3.4",
"@tauri-apps/plugin-sql": "^2.2.0",
"@tauri-apps/plugin-store": "~2",
"@tauri-apps/plugin-updater": "^2.2.2",
"@tauri-apps/plugin-upload": "^2.2.2",
"@tauri-apps/plugin-window-state": "~2.4.0",
"@types/jszip": "^3.4.1",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/uuid": "^10.0.0",
"best-effort-json-parser": "^1.2.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"framer-motion": "^12.16.0",
"immer": "^10.1.1",
"jszip": "^3.10.1",
"katex": "^0.16.22",
"lodash": "^4.17.21",
"lucide-react": "^0.503.0",
"mammoth": "^1.9.1",
"next": "^15.3.1",
"next-themes": "^0.4.6",
"pdf-parse": "^1.1.1",
"pinyin-pro": "^3.27.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-icons": "^5.5.0",
"react-syntax-highlighter": "^15.6.1",
"react-textarea-autosize": "^8.5.9",
"react-virtuoso": "^4.14.0",
"rehype-highlight": "^7.0.2",
"sonner": "^2.0.3",
"streamdown": "^1.4.0",
"tailwind-merge": "^3.2.0",
"tailwindcss-animate": "^1.0.7",
"uuid": "^11.1.0",
"yet-another-react-lightbox": "^3.25.0",
"zustand": "^5.0.3"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.25.0",
"@next/eslint-plugin-next": "^15.3.1",
"@octokit/rest": "^21.1.1",
"@tailwindcss/postcss": "^4.1.4",
"@tailwindcss/typography": "^0.5.16",
"@tauri-apps/cli": "^2",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.16",
"@types/node": "^22.14.1",
"@types/pdf-parse": "^1.1.5",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@typescript-eslint/parser": "^8.30.1",
"@vitejs/plugin-react": "^4.4.1",
"cross-env": "^7.0.3",
"eslint": "^9.21.0",
"eslint-config-next": "^15.3.1",
"eslint-plugin-react-hooks": "^5.2.0",
"tailwindcss": "^4.1.4",
"tsx": "^4.19.1",
"tw-animate-css": "^1.2.8",
"typescript": "~5.8.3",
"typescript-eslint": "^8.30.1"
},
"packageManager": "pnpm@9.15.4"
}