-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 2.01 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 2.01 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
{
"name": "quack-api",
"private": true,
"version": "0.3.0",
"type": "module",
"packageManager": "bun@1.3.5",
"scripts": {
"dev:next": "next dev --turbopack",
"build:next": "next build",
"tauri": "tauri",
"dev": "tauri dev",
"build": "tauri build",
"ensure:cli-sidecar": "mkdir -p src-tauri/binaries && test -f src-tauri/binaries/quack-$(rustc -vV | grep host | cut -d' ' -f2) || touch src-tauri/binaries/quack-$(rustc -vV | grep host | cut -d' ' -f2)",
"build:cli": "cargo build --release --bin quack --manifest-path src-tauri/Cargo.toml",
"build:cli-bundle": "cargo build --release --bin quack --manifest-path src-tauri/Cargo.toml && mkdir -p src-tauri/binaries && cp src-tauri/target/release/quack src-tauri/binaries/quack-$(rustc -vV | grep host | cut -d' ' -f2)",
"dev:cli": "bun run ensure:cli-sidecar && cargo build --bin quack --manifest-path src-tauri/Cargo.toml && ./src-tauri/target/debug/quack"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@phosphor-icons/react": "^2.1.10",
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-opener": "^2.5.3",
"@tauri-apps/plugin-store": "~2.4.2",
"@tauri-apps/plugin-stronghold": "~2.3.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.563.0",
"next": "^16.1.6",
"radix-ui": "^1.4.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.0",
"@tauri-apps/cli": "^2.10.0",
"@types/bun": "^1.3.9",
"@types/node": "^25.3.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-syntax-highlighter": "^15.5.13",
"shadcn": "^3.8.5",
"tailwindcss": "^4.2.0",
"tw-animate-css": "^1.4.0",
"typescript": "~5.9.3"
}
}