forked from errmayank/zaku
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.37 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.37 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
{
"name": "zaku",
"version": "0.8.1",
"description": "Fast, open-source API client with fangs",
"license": "MIT",
"author": "Mayank Verma <errmayank@gmail.com>",
"repository": "https://github.com/buildzaku/zaku",
"homepage": "https://zaku.app",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"svelte-check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"svelte-check-watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "eslint . --max-warnings=0",
"format": "prettier --write \"**/*.{svelte,js,cjs,mjs,ts,cts,mts,json,md,yaml,yml}\"",
"format-check": "prettier --check \"**/*.{svelte,js,cjs,mjs,ts,cts,mts,json,md,yaml,yml}\"",
"sync-cargo-lock": "cd ./src-tauri && cargo check",
"sync-metadata": "cd ./scripts/sync-metadata && cargo run && pnpm sync-cargo-lock",
"tauri": "tauri",
"checks": "./scripts/checks.sh",
"release": "./scripts/release.sh"
},
"devDependencies": {
"@eslint/compat": "1.3.1",
"@eslint/js": "9.32.0",
"@internationalized/date": "3.8.2",
"@lucide/svelte": "0.536.0",
"@sveltejs/adapter-static": "3.0.8",
"@sveltejs/kit": "2.27.0",
"@sveltejs/vite-plugin-svelte": "6.1.0",
"@tailwindcss/vite": "4.1.11",
"@tauri-apps/cli": "2.7.1",
"@types/eslint": "9.6.1",
"bits-ui": "2.9.1",
"clsx": "2.1.1",
"eslint": "9.32.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-svelte": "3.11.0",
"globals": "16.3.0",
"mode-watcher": "1.1.0",
"paneforge": "1.0.2",
"prettier": "3.6.2",
"prettier-plugin-svelte": "3.4.0",
"prettier-plugin-tailwindcss": "0.6.14",
"svelte": "5.37.3",
"svelte-check": "4.3.1",
"svelte-sonner": "1.0.5",
"tailwind-merge": "3.3.1",
"tailwind-variants": "2.1.0",
"tailwindcss": "4.1.11",
"tslib": "2.8.1",
"typescript": "5.9.2",
"typescript-eslint": "8.39.0",
"vite": "7.0.6"
},
"dependencies": {
"@codemirror/commands": "6.8.1",
"@codemirror/lang-html": "6.4.9",
"@codemirror/lang-json": "6.0.2",
"@codemirror/lang-xml": "6.1.0",
"@codemirror/language": "6.11.2",
"@codemirror/search": "6.5.11",
"@codemirror/state": "6.5.2",
"@codemirror/view": "6.38.1",
"@lezer/highlight": "1.2.1",
"@tauri-apps/api": "2.7.0",
"codemirror": "6.0.2"
}
}