-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.47 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
{
"name": "pinkparquet",
"version": "2.1.2",
"description": "",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"tauri": "tauri",
"build:win-arm64": "tauri build --target aarch64-pc-windows-msvc --runner cargo-xwin",
"build:mac-arm64": "tauri build --target aarch64-apple-darwin",
"format": "prettier --write ./src/**/*.{svelte,ts,css}"
},
"license": "MIT",
"dependencies": {
"@codemirror/autocomplete": "^6.16.0",
"@codemirror/commands": "^6.5.0",
"@codemirror/lang-sql": "^6.5.5",
"@codemirror/language": "^6.10.8",
"@codemirror/lint": "^6.8.2",
"@codemirror/search": "^6.5.11",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.33.0",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2.4.2",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-os": "^2",
"cookie": "^1.1.1"
},
"devDependencies": {
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.49.2",
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"@tauri-apps/cli": "^2",
"prettier": "^3.7.4",
"prettier-plugin-svelte": "^3.4.1",
"svelte": "^5.46.0",
"svelte-check": "^4.3.4",
"typescript": "~5.6.2",
"vite": "^7.2.7"
},
"overrides": {
"cookie": "^1.1.1"
}
}