-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.44 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.44 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
{
"name": "hyperion",
"type": "module",
"private": true,
"packageManager": "pnpm@10.24.0",
"scripts": {
"dev": "vite dev -d transform",
"build": "vite build",
"preview": "vite preview",
"sync": "svelte-kit sync && gql-tada generate-output && gql-tada turbo",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"tauri": "tauri",
"lint": "eslint \"src/**/*.{ts,svelte}\" && prettier --check src/**/*",
"lint:fix": "eslint \"src/**/*.{ts,svelte}\" --fix && prettier --write src/**/*"
},
"prettier": {
"printWidth": 100,
"tabWidth": 4,
"useTabs": true,
"plugins": [
"prettier-plugin-svelte",
"prettier-plugin-tailwindcss"
]
},
"dependencies": {
"@better-fetch/fetch": "^1.1.21",
"@dnd-kit-svelte/svelte": "^0.1.6",
"@dnd-kit/abstract": "^0.2.4",
"@dnd-kit/collision": "^0.2.4",
"@dnd-kit/dom": "^0.2.4",
"@dnd-kit/helpers": "^0.2.4",
"@tailwindcss/vite": "^4.2.0",
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-clipboard-manager": "~2.3.2",
"@tauri-apps/plugin-fs": "~2.4.5",
"@tauri-apps/plugin-notification": "~2.3.3",
"@tauri-apps/plugin-opener": "^2.5.3",
"@tauri-apps/plugin-os": "~2.3.2",
"@tauri-apps/plugin-window-state": "~2.4.1",
"@tauri-store/svelte": "^3.1.1",
"bits-ui": "^2.15.8",
"chroma-js": "^3.2.0",
"clsx": "^2.1.1",
"dayjs": "^1.11.19",
"gql.tada": "^1.9.0",
"graphql-web-lite": "16.6.0-4",
"mode-watcher": "^1.1.0",
"paneforge": "^1.0.2",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.0",
"tauri-plugin-cache-api": "^0.1.6",
"tldts": "^7.0.23",
"virtua": "^0.48.6"
},
"devDependencies": {
"@antfu/eslint-config": "^7.4.3",
"@gql.tada/svelte-support": "^1.0.1",
"@iconify-json/ph": "^1.2.2",
"@internationalized/date": "^3.11.0",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.52.2",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@tauri-apps/cli": "^2.10.0",
"@types/chroma-js": "^3.1.2",
"eslint": "^10.0.0",
"eslint-plugin-svelte": "^3.15.0",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.5.0",
"prettier-plugin-tailwindcss": "^0.7.2",
"svelte": "^5.53.0",
"svelte-check": "^4.4.1",
"svelte-eslint-parser": "^1.4.1",
"tailwind-variants": "^3.2.2",
"tw-animate-css": "^1.4.0",
"typescript": "~5.9.3",
"unplugin-icons": "^23.0.1",
"vite": "npm:rolldown-vite@^7.3.1",
"vite-plugin-devtools-json": "^1.0.0"
}
}